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/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
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。