phpPgAdmin インストール2015/01/15 |
phpPgAdmin をインストールして、Web ブラウザ経由で PostgreSQL の操作ができるように設定します。
|
|
[1] | |
[2] |
こちらを参考に PHP をインストールしておきます。
|
[3] | phpPgAdmin をインストールします。 |
[root@www ~]#
vi /etc/phpPgAdmin/config.inc.php # 18行目:追記 $conf['servers'][0]['host'] = ' localhost ';
# 94行目:変更 $conf['owned_only'] = true ;
[root@www ~]#
vi /var/lib/pgsql/data/pg_hba.conf # 72行目:下記のように変更 & アクセス許可範囲追記 host all all 127.0.0.1/32 md5 host all all 10.0.0.0/24 md5 host all all ::1/128 md5
[root@www ~]#
vi /etc/httpd/conf.d/phpPgAdmin.conf # 11行目:アクセス許可IP追記 Allow from 127.0.0.1 10.0.0.0/24 /etc/rc.d/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] |
[4] | 「http://(ホスト名)/phpPgAdmin」にアクセスして、左メニューの「PostgreSQL」をクリックします。 |
[5] | PostgreSQL に登録したユーザー名とパスワードで認証します。 |
[6] | ログインできました。この管理画面からデータベースを操作することができます。 |