一、
安装世界上最先进的开源数据库PostgreSQL 9.4
和phpPgAdmin
# apt-get install postgresql postgresql-contrib
访问PostgreSQL
命令窗口
默认的数据库名称和数据库用户名称都是“postgres”
。切换到postgres
用户进行postgresql
# sudo -u postgres psql postgres
二、 设置
“postgres”
用户密码为123456
postgres=# password postgres
Enter new password:
Enter itagain:
安装PostgreSQLAdminpack
扩展
postgres=# CREATE EXTENSION adminpack;
退出,回到终端
postgres=#q
新建用户,用户名为nanopi2密码设为fa
新建数据库,名为fadb
要删除数据库与用户时
首先切换到postgres
用户。
删除一个用户
drop user
删除一个数据库
drop database
三、
配置 PostgreSQL-MD5 验证
# vim /etc/postgresql/9.4/main/pg_hba.
conf
192.168.2.139
是本机的地址。
重启postgresql
服务
四、
配置 PostgreSQL TCP/IP 配置
# vim /etc/postgresql/9.4/main/postgresql.conf将
#listen_addresses = 'localhost'改为
listen_addresses = '*'
监听所有用户
重启postgresql
服务
五、
用 phpPgAdmin 管理 PostgreSQL
安装
# apt-get install phppgadmin
时间会比较长,安装完成后
# vim /etc/apache2/conf-available/phppgadmin.conf
找到
Requirelocal
的一行在这行前面添加
#
注释掉它
添加下面的一行:
allow fromall
保存并退出文件。
然后重启 apache 服务。
# systemctl restart apache2
在本地系统的web
浏览器用
http://localhost/phppgadmin
访问phppgadmin
六、
配置 phpPgAdmin
# vim /etc/phppgadmin/config.inc.php更改列表如下:
保存并关闭文件。重启postgresql
服务和Apache
服务。
# service postgresql restart
# service apache2 restart
现在打开你的浏览器输入地址
http://FriendlyARM/phppgadmin
用你之前创建的用户登录。我之前已经创建了一个名为“
nanppi2”
的用户,密码是“
fa”
|