配置PostgreSQL数据库常见问题

在FreeBSD下安装
 
安装完数据库后,从客户端连接,出现下列提示。
 

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数据库服务。则做如下操作。

  1. 将安装程序目录下(即你下载的安装包)的contrib/start-scripts/freebsd复制到/etc/rc.d目录中。
  2. 用命令chmod 755 /etc/rc.d/freebsd改变freebsd脚本的属性。
  3. 修改/etc/rc.conf文件,加入下面这行:/etc/rc.d/freebsd start

注意:文件名freebsd可以改名。

还有一点需要注意,我使用的是postgresql-8.2.4版。该版本不支持GBK字符集。可以使用UTF-8字符集。设置字符集参见http://www.pgsqldb.org/pgsqldoc-8.1c/multibyte.html

 

 

 

 

 

来自:http://www.360doc.com/content/08/1228/20/20151_2218293.shtml

你可能感兴趣的:(PostgreSQL)