めも帖

「めも帖」代わりにダラダラと書いていったり、めもしたりしているだけです。

PostgreSQL 8.2をインストールする

OSは、FedoraCore 5。

[root@] yum install openssl
[root@] yum install openssl-devel
[root@] yum -y install readline-devel ncurses-devel zlib-devel
[root@] wget -P /usr/local/src ftp://ftp.jp.postgresql.org/source/v8.2.3/postgresql-8.2.3.tar.gz
[root@] mkdir /usr/local/postgresql-8.2.3
[root@] chown postgres:postgres /usr/local/postgresql-8.2.3
[root@] cd /usr/local/src
[root@] tar xzf postgresql-8.2.3.tar.gz
[root@] mkdir /usr/local/postgresql-8.2.3
[root@] chown -R postgres:postgres /usr/local/postgresql-8.2.3
[root@] chown -R postgres:postgres /usr/local/src/postgresql-8.2.3
[root@] su - postgres
[postgres@] cd /usr/local/src/postgresql-8.2.3
[postgres@] ./configure --enable-nls=jp --with-openssl -with-perl  --prefix=/usr/local/postgresql-8.2.3
[postgres@] make
[postgres@] make install
[postgres@] su -
[root@] ln -sfn /usr/local/postgresql-8.2.3 /usr/local/pgsql