1.下载源码包: http://ftp.postgresql.org/pub/source/v9.2.3/postgresql-9.2.3.tar.bz2
2.安装依赖:apt-get install build-essensial gcc make libreadline6 libreadline6-dev (提醒缺少什么就安装什么)
3.开始编译:
(1)解压源码包到 /home/linux/postgresql-9.2.3
(2)./configure --prefix=/要安装postgresql到哪个目录
(3)make(成功提示:All of PostgreSQL successfully made. Ready to install.)
(4)su(切换到root用户)
(5)make install(成功提示:PostgreSQL installation complete.)
(6)adduser postgres
(7)创建数据目录:mkdir /你安装postgresql的目录/data
(8)修改拥有者:chown postgres /你安装postgresql的目录/data
(9)切换到postgres用户:su - postgres
(10)初始化数据目录:/你安装postgresql的目录/bin/initdb -D /你安装postgresql的目录/data(成功提示:Success. You can now start the database server using:
/opt/postgresql-9.2/bin/postgres -D /opt/postgresql-9.2/data
or
/opt/postgresql-9.2/bin/pg_ctl -D /opt/postgresql-9.2/data -l logfile start)
(11)启动postgresql服务:/你安装postgresql的目录/bin/postgres -D /你安装postgresql的目录/data >logfile 2>&1 &
(12)创建数据库:/你安装postgresql的目录/bin/createdb test
(13)连接到数据库:/你安装postgresql的目录/bin/psql test
如果成功,你将会看到:(
psql (9.2.3)
Type "help" for help.)