PostgreSQL 9.2.4(RPM)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
''目次''
#contents
~
----
*準備 [#e6b4f98b]
本家のリポジトリを追加する。
# su - rpmdevel
$ cd /home/rpmdevel/src
$ wget http://yum.postgresql.org/9.2/redhat/rhel-6-i386/...
# sudo rpm -ivh /home/rpmdevel/src/pgdg-centos92-9.2-6.n...
警告: /home/rpmdevel/pgdg-centos92-9.2-6.noarch.rpm: ヘ...
準備中... ############################...
1:pgdg-centos92 ############################...
~
確認
# yum list | grep postgresql
bacula-director-postgresql.i686 5.0.0-12.el6 ...
bacula-storage-postgresql.i686 5.0.0-12.el6 ...
freeradius-postgresql.i686 2.1.12-4.el6_3 ...
postgresql.i686 8.4.13-1.el6_3 ...
postgresql-contrib.i686 8.4.13-1.el6_3 ...
postgresql-devel.i686 8.4.13-1.el6_3 ...
postgresql-docs.i686 8.4.13-1.el6_3 ...
postgresql-jdbc.noarch 8.4.701-8.el6 ...
postgresql-libs.i686 8.4.13-1.el6_3 ...
postgresql-odbc.i686 08.04.0200-1.el...
postgresql-plperl.i686 8.4.13-1.el6_3 ...
postgresql-plpython.i686 8.4.13-1.el6_3 ...
postgresql-pltcl.i686 8.4.13-1.el6_3 ...
postgresql-server.i686 8.4.13-1.el6_3 ...
postgresql-test.i686 8.4.13-1.el6_3 ...
postgresql92.i686 9.2.4-1PGDG.rhe...
postgresql92-contrib.i686 9.2.4-1PGDG.rhe...
postgresql92-debuginfo.i686 9.2.4-1PGDG.rhe...
postgresql92-devel.i686 9.2.4-1PGDG.rhe...
postgresql92-docs.i686 9.2.4-1PGDG.rhe...
postgresql92-jdbc.i686 9.2.1002-1PGDG....
postgresql92-jdbc-debuginfo.i686 9.2.1002-1PGDG....
postgresql92-libs.i686 9.2.4-1PGDG.rhe...
postgresql92-odbc.i686 09.01.0200-1PGD...
postgresql92-odbc-debuginfo.i686 09.01.0200-1PGD...
postgresql92-plperl.i686 9.2.4-1PGDG.rhe...
postgresql92-plpython.i686 9.2.4-1PGDG.rhe...
postgresql92-pltcl.i686 9.2.4-1PGDG.rhe...
postgresql92-server.i686 9.2.4-1PGDG.rhe...
postgresql92-tcl.i686 2.0.0-1.rhel6 ...
postgresql92-tcl-debuginfo.i686 2.0.0-1.rhel6 ...
postgresql92-test.i686 9.2.4-1PGDG.rhe...
postgresql_autodoc.noarch 1.41-1.rhel6 ...
qt-postgresql.i686 1:4.6.2-26.el6_...
~
*インストール [#y16ed5be]
# yum install postgresql92-server postgresql92-devel
~
*確認 [#l4049992]
postgres ユーザー
# id postgres
uid=26(postgres) gid=26(postgres) 所属グループ=26(postgr...
~
バージョン
# psql --version
psql (PostgreSQL) 9.2.4
~
chkconfig
# chkconfig --list | grep postgresql
postgresql-9.2 0:off 1:off 2:off 3:off 4:off ...
~
*設定 [#hb0a2dea]
# su - postgres
$ vi .bash_profile
[ -f /etc/profile ] && source /etc/profile
PGDATA=/var/lib/pgsql/9.2/data
export PGDATA
↓
[ -f /etc/profile ] && source /etc/profile
PGHOME=/usr/pgsql-9.2
PGDATA=/var/lib/pgsql/9.2/data
PATH=$PATH:$PGHOME/bin
export PGHOME PGDATA PGLIB
*起動 [#a4e0b834]
# /etc/rc.d/init.d/postgresql-9.2 start
/var/lib/pgsql/9.2/data is missing. Use "service postgre...
...
~
失敗するので指示の通り、
# service postgresql-9.2 initdb --encoding=EUC_JP --no-l...
データベースを初期化中: ...
~
再度、
# /etc/rc.d/init.d/postgresql-9.2 start
postgresql-9.2 サービスを開始中: ...
~
*設定 [#m1fbbfe2]
自動起動
# chkconfig postgresql-9.2 on
~
終了行:
''目次''
#contents
~
----
*準備 [#e6b4f98b]
本家のリポジトリを追加する。
# su - rpmdevel
$ cd /home/rpmdevel/src
$ wget http://yum.postgresql.org/9.2/redhat/rhel-6-i386/...
# sudo rpm -ivh /home/rpmdevel/src/pgdg-centos92-9.2-6.n...
警告: /home/rpmdevel/pgdg-centos92-9.2-6.noarch.rpm: ヘ...
準備中... ############################...
1:pgdg-centos92 ############################...
~
確認
# yum list | grep postgresql
bacula-director-postgresql.i686 5.0.0-12.el6 ...
bacula-storage-postgresql.i686 5.0.0-12.el6 ...
freeradius-postgresql.i686 2.1.12-4.el6_3 ...
postgresql.i686 8.4.13-1.el6_3 ...
postgresql-contrib.i686 8.4.13-1.el6_3 ...
postgresql-devel.i686 8.4.13-1.el6_3 ...
postgresql-docs.i686 8.4.13-1.el6_3 ...
postgresql-jdbc.noarch 8.4.701-8.el6 ...
postgresql-libs.i686 8.4.13-1.el6_3 ...
postgresql-odbc.i686 08.04.0200-1.el...
postgresql-plperl.i686 8.4.13-1.el6_3 ...
postgresql-plpython.i686 8.4.13-1.el6_3 ...
postgresql-pltcl.i686 8.4.13-1.el6_3 ...
postgresql-server.i686 8.4.13-1.el6_3 ...
postgresql-test.i686 8.4.13-1.el6_3 ...
postgresql92.i686 9.2.4-1PGDG.rhe...
postgresql92-contrib.i686 9.2.4-1PGDG.rhe...
postgresql92-debuginfo.i686 9.2.4-1PGDG.rhe...
postgresql92-devel.i686 9.2.4-1PGDG.rhe...
postgresql92-docs.i686 9.2.4-1PGDG.rhe...
postgresql92-jdbc.i686 9.2.1002-1PGDG....
postgresql92-jdbc-debuginfo.i686 9.2.1002-1PGDG....
postgresql92-libs.i686 9.2.4-1PGDG.rhe...
postgresql92-odbc.i686 09.01.0200-1PGD...
postgresql92-odbc-debuginfo.i686 09.01.0200-1PGD...
postgresql92-plperl.i686 9.2.4-1PGDG.rhe...
postgresql92-plpython.i686 9.2.4-1PGDG.rhe...
postgresql92-pltcl.i686 9.2.4-1PGDG.rhe...
postgresql92-server.i686 9.2.4-1PGDG.rhe...
postgresql92-tcl.i686 2.0.0-1.rhel6 ...
postgresql92-tcl-debuginfo.i686 2.0.0-1.rhel6 ...
postgresql92-test.i686 9.2.4-1PGDG.rhe...
postgresql_autodoc.noarch 1.41-1.rhel6 ...
qt-postgresql.i686 1:4.6.2-26.el6_...
~
*インストール [#y16ed5be]
# yum install postgresql92-server postgresql92-devel
~
*確認 [#l4049992]
postgres ユーザー
# id postgres
uid=26(postgres) gid=26(postgres) 所属グループ=26(postgr...
~
バージョン
# psql --version
psql (PostgreSQL) 9.2.4
~
chkconfig
# chkconfig --list | grep postgresql
postgresql-9.2 0:off 1:off 2:off 3:off 4:off ...
~
*設定 [#hb0a2dea]
# su - postgres
$ vi .bash_profile
[ -f /etc/profile ] && source /etc/profile
PGDATA=/var/lib/pgsql/9.2/data
export PGDATA
↓
[ -f /etc/profile ] && source /etc/profile
PGHOME=/usr/pgsql-9.2
PGDATA=/var/lib/pgsql/9.2/data
PATH=$PATH:$PGHOME/bin
export PGHOME PGDATA PGLIB
*起動 [#a4e0b834]
# /etc/rc.d/init.d/postgresql-9.2 start
/var/lib/pgsql/9.2/data is missing. Use "service postgre...
...
~
失敗するので指示の通り、
# service postgresql-9.2 initdb --encoding=EUC_JP --no-l...
データベースを初期化中: ...
~
再度、
# /etc/rc.d/init.d/postgresql-9.2 start
postgresql-9.2 サービスを開始中: ...
~
*設定 [#m1fbbfe2]
自動起動
# chkconfig postgresql-9.2 on
~
ページ名: