1. 修改 ${postgres_install}/data/postgresql.conf
将listen_address = 'localhost' 改为 listen_address = '*'
2. ${postgres_install}/data/pg_hba.conf
在文件最后加入:
host all all 192.168.1.0/24 password
3. 重新启动数据库
${postgres_install}/bin/pg_ctl stop -D ${postgres_install}/data
${postgres_install}/bin/postmaster -i -D ${postgres_install}/data>logfile 2>&1 &
4. 这样就可以远程访问数据库了,如下边的命令:
$ psql -h 192.168.1.216 -p 5432
参照http://blog.chinaunix.net/u2/60913/showart_1213003.html
posted on 2009-07-24 10:37
冰是没有未来的,因为它的永恒 阅读(905)
评论(0) 编辑 收藏