Home  >  Article  >  Database  >  Ubuntu 8.04下安装PostgreSQL 8.3关键之处

Ubuntu 8.04下安装PostgreSQL 8.3关键之处

WBOY
WBOYOriginal
2016-06-07 16:52:441184browse

本人的系统是虚拟机上的Ubuntu 8.041.先去http://www.postgresql.org那里下个postgreSQL core 8.3.2.使用命令tar -xvf postgreSQ

本人的系统是虚拟机上的Ubuntu 8.04

1.先去那里下个postgreSQL core 8.3.

2.使用命令tar -xvf postgreSQL-8.3.3.tar.bz2 解压

3.去那个解压的文件夹,使用./configure 命令,,它将自动检查系统配置

4.很不幸得是报了一个"c cannot output the executable file"

相关阅读:Ubuntu下安装PostgreSQL8.3详细过程[多图]

5.然后在网上找了找资料,发现没有升级libc所以使用命令:sudo apt-get install libc6-dev gcc g++

6.再运行"./configure",却报了readline library is not found,如果这个错误你能解决最好,还有可能报zlib is not found

7.不幸的是我找了2个多小时,下载了无数相关的包,最后以readline5-dev包不能正常安装告终。

8.所以没有办法,只好这样运行./configure --without-readline --without-zlib

9.然后make

10.下面命令是要加sudo的

make install
adduser postgres
mkdir /usr/local/pgsql/data
chown postgres /usr/local/pgsql/data

到了这里,我们要创建logfile 文件然后把它拷贝到 /usr/local/pgsql/data/ (好像不拷贝也可以,大家可以试试)

然后切换用户sudo - postgres

/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test
/usr/local/pgsql/bin/psql test

最后,你能看到sql 交互界面,大功告成。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn