- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PostgreSQL/インストール/8.2 へ行く。
- 1 (2007-09-17 (月) 17:42:43)
- 2 (2007-11-01 (木) 19:00:46)
- 3 (2008-01-09 (水) 19:06:10)
- 4 (2013-09-28 (土) 18:13:55)
PostgreSQL 8.2 インストール
必要なツール・ライブラリのインストール (CentOS6.4)
yum groupinstall "Development tools" yum instlal readline-devel yum instlal zlib-devel
postgresユーザの作成
su - # groupadd postgres useradd -g postgres -d /usr/local/pgsql postgres cat >> /usr/local/pgsql/.bashrc export PATH=/usr/local/pgsql/bin:$PATH
インストール
./configure --prefix=/usr/local/pgsql make make install
設定
chmod 755 /usr/local/pgsql chown postgres /usr/local/pgsql mkdir /usr/local/pgsql/data chown postgres /usr/local/pgsql/data su - postgres /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data -E EUC-JP --no-locale
起動
su - postgres /usr/local/pgsql/bin/pg_ctl start -D /usr/local/pgsql/data/
起動スクリプト
cp linux /etc/rc.d/init.d/postgresql chkconfig --add postgresql
ソースツリーのpostgresql-8.2.x/contrib/start-scriptsディレクトリ以下にあるファイルを使う。pg_ctlを起動に使うのは推奨されないらしい。