我正在尝试在 ubuntu 上设置一个 postgresql 9.1 服务器,用于远程访问数据。我已经正确安装了 postgres,服务器进程正在运行,并且我正在尝试对其进行配置,以便我可以从 LAN 之外的其他几台计算机通过 Internet 远程访问服务器。
我已经修改了我的 pg_hba.conf :
host all all 0.0.0.0 trust
和 postgresql.conf :
listen_addresses = '*'
port = 5432
我还修改了我的 iptables 以接受端口 5432 上的连接。
当我尝试在 python 上使用 psycopg2 进行连接时:
conn=psycopg2.connect('host=XX.XX.XX.XX port=5432 dbname=postgres user=myUser password=mypassword')
我收到以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/psycopg2/__init__.py", line 179, in connect
connection_factory=connection_factory, async=async)
psycopg2.OperationalError: could not connect to server: Connection refused
Is the server running on host "XX.XX.XX.XX" and accepting
TCP/IP connections on port 5432?
我不确定我是否插入了正确的 IP 地址,而且我很好奇我将如何确定在这里使用什么 IP 地址来连接到我的服务器。我使用了运行 postgres 服务器的计算机的公共 IP,但我不确定这是否正确。还是我还缺少其他步骤?我知道这是一种糟糕的安全方式,但目前我只想建立一个连接。另外我的电脑在路由器后面,那么我将如何专门访问我的服务器?
非常感谢任何帮助。