postgresql从入门到菜鸟(一)通过编译方式安装postgresql

最近工作需要用到postgresql数据库,学习过程中发现网上的资料并不是很多。在这里把学习的过程以及学习过程中的问题分享出来,希望能对需要刚才开始学习postgresql的人有所帮助。

安装篇
安装安装环境为:rehel虚拟机。
安装方式:源码安装。
postgresql版本:9.5.4.

首先下载postgresql源码包
wget https://ftp.postgresql.org/pub/source/v9.5.4/postgresql-9.5.4.tar.bz2

解压源码
tar -xjvf postgresql-9.5.4.tar.bz2 

进入文件夹下开始编译
cd postgresql-9.5.4/
./configure

如果出现以下错误,则说明没有安装依赖:
checking for library containing shmget... none required
checking for library containing readline... no
configure: error: readline library not found

./configure有很多可以配置的参数,常用的有
--prefix=PREFIX(指定安装路径,不指定的话默认安装到/usr/local/pgsql目录下)
--localedir=DIRECTORY(设置安装区域数据的目录)
--enable-debug(打开debug)
完整的命令可以参考官方手册

安装缺少的依赖
yum install readline-devel
yum install zlib-devel


重新配置
./configure

配置后开始编译
make

编译后出现以下提示开始安装
All of PostgreSQL successfully made. Ready to install.


安装
make install


编辑环境变量配置文件
vi ~/.bash_profile


添加以下配置
PGDATA= /file/dbuser/
PATH=/usr/local/pgsql/bin:$PATH
export PGDATA PATH


添加用户(注:是系统用户不是数据库用户,理论上pg安装过程中会自动创建此用户)
useradd postgres
passwd  postgres 

给新用户赋予data目录的权限
chown -R postgres:postgres /file/dbuser

创建数据库集群
initdb –D /file/dbuser

数据库启动
pg_ctl start -D /file/dbuser#因为已经设定了PGDATA,所以这里-D也可以不指定

你可能感兴趣的:(postgresql)