Centos6.6下Postgresql9.6.6安装与配置

前端之家收集整理的这篇文章主要介绍了Centos6.6下Postgresql9.6.6安装与配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、环境介绍

系统平台:CentOS release 6.6 (Final)

Postgresql:postgresql-9.6.6

SELINUX=disabled

Iptables关闭

二、安装过程

1.安装依赖包

yum-yinstallgcc*
yum-yinstallreadline-devel

2. 源码包获取

wgethttp://ftp.postgresql.org/pub/source/v9.6.6/postgresql-9.6.6.tar.gz

3. 解压

tarzxfpostgresql-9.6.6.tar.gz

5.创建用户、设置密码

adduserpostgres
passwdpostgres

6. 编译安装

cdpostgresql-9.6.6
./configure--prefix=/home/postgres/pgsql
gmake
gmakeinstall

7.设置环境变量

vim/etc/profile

添加一行

PATH=$PATH:$HOME/bin:/home/postgres/pgsql/bin
source/etc/profile

8.创建数据库目录

mkdir/home/postgres/pgsql/data

创建数据库操作历史记录文件

touch/home/postgres/pgsql/.pgsql_history

更改所属组

chown-Rpostgres:postgres/home/postgres/pgsql/*

9.切换到postgre用户,初始化数据库

su-postgres
/home/postgres/pgsql/bin/initdb-D/home/postgres/pgsql/data
exit

10.编译启动命令

从postgres解压后的文件夹里拷贝linux到/etc/init.d/

cp/root/postgresql-9.6.6/contrib/start-scripts/linux/etc/init.d/postgresql
vim/etc/init.d/postgresql

修改下面两行:

prefix=/home/postgres/pgsql
PGDATA="/home/postgres/pgsql/data"

保存退出

添加可执行权限

chmod+x/etc/init.d/postgresql

11.启动postgres数据库

/etc/init.d/postgresqlstart

12.测试使用

[root@MidApp~]#su-postgres
[postgres@MidApp~]$psql
psql(9.6.6)
Type"help"forhelp.
postgres=#\l
Listofdatabases
Name|Owner|Encoding|Collate|Ctype|Accessprivileges
-----------+----------+----------+-------------+-------------+-----------------------
postgres|postgres|UTF8|en_US.utf-8|en_US.utf-8|
template0|postgres|UTF8|en_US.utf-8|en_US.utf-8|=c/postgres+
|||||postgres=CTc/postgres
template1|postgres|UTF8|en_US.utf-8|en_US.utf-8|=c/postgres+
|||||postgres=CTc/postgres
(3rows)
postgres=#\q
原文链接:https://www.f2er.com/centos/375137.html

猜你在找的CentOS相关文章