首先要安装,apt-get install
然后是配置:
1. 配置postgres登录密码:先su -l成为root,之后su postgres,之后运行psql,之后使用\password命令就可以了。
2. 配置postgres可以登录:修改/etc/postgresql/9.1/main/pg_hba.conf
在
host all all 127.0.0.1/32 md5
下面加一行自己的ip地址。
host all all your_ip/32 md5
之后重启
/etc/init.d/postgresql restart
3.有修改postgresql.conf,设置监听地址。
4.使用phppgadmin的时候,需要修改一下配置文件,具体来说就是把$conf['extra_login_security'] = true;这里改成false。
阅读(1928) | 评论(0) | 转发(0) |