如何在CentOS与RHEL中使用Yum安装phpPgAdmin

phpPgAdmin的是用PHP编写的用于访问和管理PostgreSQL数据库的基于Web的客户端。它提供了非常有效的方式对数据库的工作 PostgreSQL的像,创建数据库,表,修改数据库,导入/导出数据库等。 本文将帮助你在CentOS和RedHat系统安装phpPgAdmin的。之前安装它确保您的Apache和PostgreSQL服务器上安装。如果你没有让他们阅读我们的教程如何安装它们。 在CentOS,RHEL和Fedora安装PostgreSQL 在CentOS和RHEL安装Apache MySQL PHP

第1步:添加PostgreSQL的库

第一步在你的系统上安装的Postgres库,使用下面的一个URL下载rpm库。
CentOS/RHEL 5, 32-Bit:
# wget http://yum.postgresql.org/9.1/redhat/rhel-5-i386/pgdg-centos91-9.1-4.noarch.rpm

CentOS/RHEL 6, 32-Bit:
# wget http://yum.postgresql.org/9.1/redhat/rhel-6-i386/pgdg-centos91-9.1-4.noarch.rpm

CentOS/RHEL 5, 64-Bit:
# wget http://yum.postgresql.org/9.1/redhat/rhel-5.0-x86_64//pgdg-centos91-9.1-4.noarch.rpm

CentOS/RHEL 6, 64-Bit:
# wget http://yum.postgresql.org/9.1/redhat/rhel-6.3-x86_64/pgdg-centos91-9.1-4.noarch.rpm
第2步:使用Yum安装phpPgAdmin
使用yum命令行工具安装phpPgAdmin的包。
# yum install phpPgAdmin
第3步:配置phpPgAdmin允许远程访问。
phpPgAdmin默认情况下只允许从本地访问主机。如果你想从远程计算机上访问,那么编辑 /etc/httpd/conf.d/phpPgAdmin.conf 更新配置如下图所示。
Alias /phpPgAdmin /usr/share/phpPgAdmin

<Directory /usr/share/phpPgAdmin>
   order deny,allow
   deny from all
   allow from 192.168.1.0/24
</Directory>
第4步:重新启动Apache服务
重新启动Apache服务重新加载新的设置。
# service httpd restart
第5步:在浏览器访问phpPgAdmin。
现在你可以在浏览器中使用以下网址访问phpPgAdmin的。您的服务器IP更改192.168.1.100。
 http://192.168.1.100/phpPgAdmin/
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏