PostgreSQL 无法从 python/psycopg 连接

PostgreSQL 无法从 python/psycopg 连接

我在通过 Python/Psycopg2 连接到 PostgreSQL 时遇到了问题。

PostgreSQL 服务器在 192.168.1.6,CentOS 5.5 上运行。我已经可以使用 Navicat 通过 LAN 工作站进行连接,我非常确定我在 iptables 中打开了正确的帖子。

但是当从 Python/psycopg2 连接时,我收到此错误

conn = psycopg2.connect(database='test', user='sql', host='192.198.1.6', password='sql')

Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    conn = psycopg2.connect(database='test', user='sql', host='192.198.1.6', password='sql')
OperationalError: could not connect to server: Connection timed out (0x0000274C/10060)
        Is the server running on host "192.198.1.6" and accepting
        TCP/IP connections on port 5432?

我尝试在客户端和服务器机器上禁用防火墙和 iptables,但仍然出现同样的错误。

答案1

LAN??192.198.1.6您看到错误了吗?
尝试:

192.168.1.6

相关内容