分类:
2007-07-20 14:49:50
could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "192.168.108.3" and accepting TCP/IP connections on port 5432? |
需要修改/usr/local/pgsql/data/postgresql.conf文件
把#listen_addresses = 'localhost'的#去掉,将localhost改成服务器网卡的IP地址。 将#port = 5432 的#去掉。 将#superuser_reserved_connections = 3 的#去掉。 |
还需要修改/usr/local/pgsql/data/pg_hba.conf文件,增加一行。
host all all 192.168.108.0/24 trust 其中的IP地址就是你客户端的IP,上面的例子是将192.168.108.0整个网段都允许连接。 |
如果要机器启动时自动启动postgresql数据库服务。则做如下操作。
注意:文件名freebsd可以改名。 |
还有一点需要注意,我使用的是postgresql-8.2.4版。该版本不支持GBK字符集。可以使用UTF-8字符集。设置字符集参见