postgresql-9.3beta2.tar.gz
安装时建议看一下文件INSTALL,里面有详细的说明。
(1)配置
tar zxvf
postgresql-9.3beta2.tar.gz
mkdir
/home/wln/postgres9.3/intall
./configure --prefix=/home/wln/postgres9.3/intall--enable-debug
(2)编译
gmake
(3)安装
gmake install
(4)创建安装用户数据目录
mkdir
/home/wln/postgres9.3/data
(6)初始化数据库
/home/wln/postgres9.3/install/bin/initdb -D
/home/wln/postgres9.3
/data
初始化成功后显示:
Success. You can now start the database server using:
or
(7)启动数据库
home/wln/postgres9.3/install/bin/pg_ctl -D /home/wln/postgres9.3/data -l logfile start
(8)添加环境变量到系统
add the following to your shell start-up file,such as
使其生效 source ~/.bashrc 或source
~/.bash_profile
PATH=
/home/wln/postgres9.3/install/bin:$PATH
export PATH
export LD_LIBRARY_PATH=/home/wln/postgres9.3/install/lib:$LIBPATH
$PATH是本来的PATH的变量,这句话的意思是在原来的PATH的基础上,加上
/home/wln/postgres9.3/install/bin这个路径。
(9)查看数据库状态
pg_ctl status
(10)启动/停止数据库
pg_ctl start
pg_ctl stop
(11)进入数据库
psql -d postgres -p 5432
原文链接:https://www.f2er.com/postgresql/196096.html