#freeze
''目次''
#contents
~
----
*目的 [#y37fefff]
*参考サイト [#p2b0b82c]
-[[PostgreSQL リファレンス>http://www.fiberbit.net/user/kunyami/postgresql/]]
-[[PostgreSQL 8でつくるBlogライクなメモシステム>http://journal.mycom.co.jp/special/2004/postgres8/menu.html]]
*準備 [#w25f4ad8]
-readline~
configureの途中で怒られるので下記にてインストールしておく。
# yum install readline-devel
-PostgreSQL -- http://www.postgresql.jp/~
ソース:postgresql-8.3.7.tar.gz
*インストール [#w8a404e2]
+''ソースの取得''
# wget -P /usr/local/src http://www.ring.gr.jp/pub/misc/db/postgresql/source/v8.3.7/postgresql-8.3.7.tar.gz
~
+''ソースの解凍''
# cd /usr/local/src
# tar zxvf postgresql-8.3.7.tar.gz
~
+''ユーザーの作成''~
インストール作業をrootアカウントで行ってはならず、あらかじめ、PostgreSQLの管理者グループと管理者アカウントを作成し、その権限でインストールからデータベースの初期化処理までを行う。~
~
++ユーザーの作成
# groupadd postgres
# useradd -g postgres postgres
# passwd postgres
++ソースディレクトリの権限設定
# chown -R postgres:postgres /usr/local/src/postgresql-8.3.7
++インストール先のフォルダを前以って作成
# mkdir /usr/local/postgresql-8.3.7
# chown -R postgres:postgres /usr/local/postgresql-8.3.7
~
+''ログオンユーザー切り替え''
# su - postgres
+''コンパイル設定''~
[[configureのヘルプ>PostgreSQL-8.3.7のconfigureヘルプ]]
$ cd /usr/local/src/postgresql-8.3.7
$ ./configure \
> --prefix=/usr/local/postgresql-8.3.7 \
> --enable-nls=ja \
> --with-openssl \
> --without-docdir
++readlineが無い場合下記が表示される
(省略)
checking for -lreadline... no
checking for -ledit... no
configure: error: readline library not found
If you have readline already installed, see config.log for details on the
failure. It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support.
+''インストール''
$ make
$ make install
$ exit
+''シンボリックリンクの作成''
# ln -s /usr/local/postgresql-8.3.7 /usr/local/pgsql
# chown -R postgres:postgres /usr/local/pgsql
*環境変数の設定 [#v075e39a]
+下記の通り変更する
# su - postgres
$ vi ~/.bash_profile
PGHOME=/usr/local/pgsql
PGDATA=$PGHOME/data
PGLIB=$PGHOME/lib
PATH=$PATH:$HOME/bin:$PGHOME/bin
export PGHOME PGDATA PGLIB PATH
~
+変更の適用
$ source ~/.bash_profile
*データベースの初期化 [#pee7b536]
$ initdb --encoding=EUC_JP --no-locale --pgdata=/usr/local/pgsql/data
*自動起動設定 [#ca21a817]
-''起動スクリプトのコピー''
# cp /usr/local/src/postgresql-8.3.7/contrib/start-scripts/linux /etc/rc.d/init.d/pgsql
-''起動スクリプトの編集''
# vi /etc/rc.d/init.d/pgsql
-''実行権限を与えて自動起動設定''
# chmod 755 /etc/rc.d/init.d/pgsql
# chkconfig --add pgsql
# chkconfig pgsql on
# chkconfig --list pgsql
pgsql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
*他 [#yd6efa41]
-ライブラリのパス指定
# vi /etc/ld.so.conf
/usr/local/pgsql/lib ← 追加して保存
# /etc/ldconfig -v ← 変更の適用
*Trac用の設定 [#ta315c7e]
[[PostgreSQLコマンドヘルプ]]
+ユーザーの作成
# su - postgres
$ createuser -S -D -R tracuser
~
+Tracプロジェクト用DBの作成
$ createdb -O tracuser trac_hoge-project --encoding=utf8