postgres-9.3 beta2安装

前端之家收集整理的这篇文章主要介绍了postgres-9.3 beta2安装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
软件下载位置: http://www.postgresql.org/ftp/source/
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:

/home/wln/postgres9.3/install/bin/postgres -D /home/wln/postgres9.3/data
or
/home/wln/postgres9.3/install/bin/pg_ctl -D /home/wln/postgres9.3/data -l logfile start

(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
"~/.bash_profile" 或 "~/.bashrc" (or "/etc/profile",if you want it to affect all
users):
使其生效 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
(默认的数据库端口5432,可以在postgresql.conf文件中更改port端口值)
原文链接:https://www.f2er.com/postgresql/196096.html

猜你在找的Postgre SQL相关文章