postgres设置远程可访问数据库

postgres设置远程可访问数据库
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

你可能感兴趣的:(postgres设置远程可访问数据库)