利用postgresql8.1.1源代码在hp-ux 11.11B上安装的步骤

利用postgresql8.1.1源代码在hp-ux 11.11B上安装的步骤1、官方文档的步骤./configuregmakesugmake installadduser postgresmkdir /usr/local/pgsql/datachown postgres /usr/local/pgsql/datasu - 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 test2、实际步骤2.1安装gcc 3.4.2在hp的网站下载下列软件包到/home/tempbinutils_2.15a_hppa-hp-hpux11.11_depot.gzgcc_3.4.2_hppa-hp-hpux11.11_depot.gz(没有用最新的4.0.2,因为对postgresql8.1.1源代码make出错)gunzip *gzswinstall -s /home/temp/binutils_2.15a_hppa-hp-hpux11.11_depotswinstall -s /home/temp/gcc_3.4.2_hppa-hp-hpux11.11_depot2.2安装gmake 3.8.0退出telnet,重新用root登录在gnu的网站下载make-3.80.tar.gz软件包到/home/tempgunzip make-3.80.tar.gztar xvf make-3.80.tarcd make-3.80./configuremake./make checkmake install2.3安装postgresql8.1.1退出telnet,重新用root登录在postgresql的网站下载postgresql-8.1.1.tar.gz到/home/tempgunzip *gztar xvf postgresql-8.1.1.tarcd postgresql-8.1.1./configure CC=gcc --without-readline --without-zlib (不加2个--without不能成功)makemake installuseradd postgres (hp-ux没有adduser命令)mkdir /usr/local/pgsql/datachown postgres /usr/local/pgsql/datamkdir /home/postgreschown 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

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...