打印本文 打印本文 关闭窗口 关闭窗口
利用postgresql8.1.1源代码在hp-ux 11.11B上安装的步骤
作者:武汉SEO闵涛  文章来源:敏韬网  点击数975  更新时间:2007/11/14 13:11:15  文章录入:mintao  责任编辑:mintao
利用postgresql8.1.1源代码在hp-ux 11.11B上安装的步骤
1、官方文档的步骤
./configure
gmake
su
gmake install
adduser postgres
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test
2、实际步骤
2.1安装gcc 3.4.2
在hp的网站下载下列软件包到/home/temp
binutils_2.15a_hppa-hp-hpux11.11_depot.gz
gcc_3.4.2_hppa-hp-hpux11.11_depot.gz(没有用最新的4.0.2,因为对postgresql8.1.1源代码make出错)
gunzip *gz
swinstall -s /home/temp/binutils_2.15a_hppa-hp-hpux11.11_depot
swinstall -s /home/temp/gcc_3.4.2_hppa-hp-hpux11.11_depot

2.2安装gmake 3.8.0
退出telnet,重新用root登录
在gnu的网站下载make-3.80.tar.gz软件包到/home/temp
gunzip make-3.80.tar.gz
tar xvf make-3.80.tar
cd make-3.80
./configure
make
./make check
make install

2.3安装postgresql8.1.1
退出telnet,重新用root登录
在postgresql的网站下载postgresql-8.1.1.tar.gz到/home/temp
gunzip *gz
tar xvf postgresql-8.1.1.tar
cd postgresql-8.1.1
./configure CC=gcc --without-readline --without-zlib (不加2个--without不能成功)
make
make install
useradd postgres (hp-ux没有adduser命令)
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data
mkdir /home/postgres
chown postgres /home/postgres (不加这2行postgres用户没有自己的home目录)
su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test

打印本文 打印本文 关闭窗口 关闭窗口