1. 程式人生 > >centos6安裝postgresql9主從節點重點提要

centos6安裝postgresql9主從節點重點提要

neu oot .org cal tar ali weight 功能 變量

1、需求分析

系統版本:

cat /etc/redhat-release

Red Hat Enterprise Linux Server release 6.7 (Santiago)


在PGSQL9之後才有了主從的功能,但是在centos6的源中默認是安裝PGSQL8,所以就需要去網上下載軟件包安裝。


2、卸載舊版PGSQL

# yum remove postgresql-server


3、在下面網站找到自己需要的版本

https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6.7-x86_64/

postgresql94-9.4.18-1PGDG.rhel6.x86_64.rpm

postgresql94-devel-9.4.18-1PGDG.rhel6.x86_64.rpm

postgresql94-libs-9.4.18-1PGDG.rhel6.x86_64.rpm

postgresql94-server-9.4.18-1PGDG.rhel6.x86_64.rpm


4、上傳並安裝

# yum install -y postgresql94-libs-9.4.18-1PGDG.rhel6.x86_64.rpm postgresql94-9.4.18-1PGDG.rhel6.x86_64.rpm postgresql94-server-9.4.18-1PGDG.rhel6.x86_64.rpm postgresql94-devel-9.4.18-1PGDG.rhel6.x86_64.rpm


5、命令執行註意點

因為不是按照系統默認安裝的,所以需要把執行路徑添加到環境變量


通過命令查看相關命令的具體位置

# rpm -qa | grep postgres*

postgresql94-libs-9.4.18-1PGDG.rhel6.x86_64

postgresql94-devel-9.4.18-1PGDG.rhel6.x86_64

postgresql-libs-8.4.20-8.el6_9.x86_64

postgresql94-9.4.18-1PGDG.rhel6.x86_64

postgresql94-server-9.4.18-1PGDG.rhel6.x86_64


# rpm -ql postgresql94-server-9.4.18-1PGDG.rhel6.x86_64 | more

/usr/pgsql-9.4/bin/psql

/usr/pgsql-9.4/bin/initdb

/usr/pgsql-9.4/bin/pg_ctl


# vi /etc/profile

添加

export PATH=$PATH://usr/pgsql-9.4/bin


# source /etc/profile


6、啟動方式和開機啟動配置

啟動方式

$ pg_ctl -D /data/pg_data start


開機啟動服務配置

vi /etc/rc.d/rc.local

添加

/usr/pgsql-9.4/bin/pg_ctl -D /data/pg_data start


如果服務起不來,可以查看日誌文件/data/pg_data/pg_log/postgresql-xxx.log進行排查。

其他配置與我之前的文章生產環境postgresql主從環境配置並無二致


參考:

https://blog.csdn.net/kongxx/article/details/52883383

centos6安裝postgresql9主從節點重點提要