Postgresql Centos问题
我试图让Postgresql 9.3在CentOS6上接受远程连接。 我在iptables中打开端口,在pgconf文件中将端口设置为5432,将listen_addresses设置为'*'(接受所有连接),并允许pg_hba中的地址与主机全部全部为0.0.0.0/0信任。 邮局主管在5432上运行。但是,我仍然收到以下错误。 我如何获得有效的连接?
错误:
could not connect to server: Connection refused
Is the server running on host "50.63.141.236" and accepting
TCP/IP connections on port 5432?
pg_hba.conf文件的相关部分:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
#opens postgres to the internet
host all all 0.0.0.0/0 trust
iptables -L的相关输出:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:postgres
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:postgres
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:postgres
最后证明postmaster正在运行。
EN 1433/sshd
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LIST
更改listen_addresses
后,您尚未重新启动PostgreSQL。 它仍在127.0.0.1
侦听,即仅环回。 或者你编辑了另一个PostgreSQL安装的配置文件。
如果你连接到主机127.0.0.1
端口5432
它会工作。 或者确保你编辑了正确的配置并重新启动(而不是重新加载)PostgreSQL。