Quick installation of postgresql on linux

Linux版本 ubuntu 12.04

安装Postgresql:

sudo apt-get install postgresql

切换到postgresy用户

sudo su - postgres

进入postgres console

psql

修改postgres密码

\password postgres

接着修改postgresql的配置文件

先修改postgresql.conf

listen_addresses = '*'

监听所有IP

然后修改pg_hba.conf

host    all    all    10.14.5.1/26    md5

切换到postgres用户,重启

service postgresql restart


参考:

  1. http://jingyan.baidu.com/article/3ea51489ec3cb452e71bba52.html

  2. http://vivianyw.blog.163.com/blog/static/134547422201423102628822/

你可能感兴趣的:(Quick installation of postgresql on linux)