共计 1910 个字符,预计需要花费 5 分钟才能阅读完成。
PostgreSQL 是一款强大的高性能的对象关系型数据库管理系统(ORDBMS),采用与 BSD 一样的授权方式。PostgreSQL 是非常适合大型数据库,有许多先进的功能。PostgreSQL 支持许多操作系统,包括 Linux,FreeBSD,Solaris 和 Microsoft Windows。
phpPgAdmin 是管理 PostgreSQL 数据库基于 PHP 的 Web 应用程序。使用 phpPgAdmin 很容易创建一个数据库,创建一个角色,并在 Postgres 里创建表。下面说说在 Ubuntu 16.04 下安装 PostgreSQL 和 phpPgAdmin 的过程。
第一步:安装 PostgreSQL, phpPgAdmin 和 Apache2
sudo apt-get -y install postgresql postgresql-contrib phppgadmin
第二步:配置 PostgreSQL 用户
PostgreSQL 使用的用户认证和授权类似 UNIX 权限角色。默认情况下,PostgreSQL 创建了一个名为“Postgres”基本身份验证新用户。要使用 PostgreSQL,您需要登录到“Postgres”账户,你可以通过键入:
sudo su
su - postgres
现在,您可以用命令访问 PostgreSQL 提示:
psql
然后更改 Postgres 角色的密码:
password postgres
ENTER YOUR PASSWORD
然后输入 q 退出 psql 命令行。
运行命令“exit”再次离开 Postgres 的用户,并成为 root。
exit
第三步:配置 Apache2
cd /etc/apache2/conf-available/
nano phppgadmin.conf
注释掉 #Require local,添加 allow from all,这样才可以从你的浏览器访问。
第四步:配置 phpPgAdmin
编辑文件 /etc/phppgadmin/config.inc.php:
cd /etc/phppgadmin/
nano config.inc.php
找到 $conf[‘extra_login_security’] = true; 修改为 false。
你就可以使用 postgres 用户邓丽 phpPgAdmin。
第五步:重启 PostgreSQL 和 Apache2
systemctl restart postgresql
systemctl restart apache2
第六步:测试登录
浏览器输入:http:// 替换成你的 IP 地址 /phppgadmin/
OK,好好享受成功的喜悦吧!
———————————— 华丽丽的分割线 ————————————
在 CentOS 6.5 上编译安装 PostgreSQL 9.3 数据库 http://www.linuxidc.com/Linux/2016-06/132272.htm
CentOS 6.3 环境下 yum 安装 PostgreSQL 9.3 http://www.linuxidc.com/Linux/2014-05/101787.htm
PostgreSQL 缓存详述 http://www.linuxidc.com/Linux/2013-07/87778.htm
Windows 平台编译 PostgreSQL http://www.linuxidc.com/Linux/2013-05/85114.htm
Ubuntu 下 LAPP(Linux+Apache+PostgreSQL+PHP) 环境的配置与安装 http://www.linuxidc.com/Linux/2013-04/83564.htm
Ubuntu 上的 phppgAdmin 安装及配置 http://www.linuxidc.com/Linux/2011-08/40520.htm
CentOS 平台下安装 PostgreSQL9.3 http://www.linuxidc.com/Linux/2014-05/101723.htm
PostgreSQL 配置 Streaming Replication 集群 http://www.linuxidc.com/Linux/2014-05/101724.htm
———————————— 华丽丽的分割线 ————————————
PostgreSQL 的详细介绍 :请点这里
PostgreSQL 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-08/134260.htm