pg_auto_failover
2021/9/30 6:12:34
本文主要是介绍pg_auto_failover,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
【参考】 https://github.com/citusdata/pg_auto_failover https://zhuanlan.zhihu.com/p/337259025 【环境】 paf1:189 paf2:204 paf3:202 【主要流程】 hostnamectl set-hostname paf11 curl https://install.citusdata.com/community/rpm.sh | sudo bash sudo yum install -y pg-auto-failover14_13 export PGDATA=/var/lib/pgsql/13/data export PGHOME=/usr/pgsql-13 export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/pgsql-13/bin paf1 pg_autoctl create monitor --pgdata /var/lib/pgsql/13/data --pgport 5432 --hostname paf1 --auth trust --ssl-self-signed --run 修改pg_hba.conf kill -3 pg进程,会自动拉起 host all autoctl_node 192.168.3.0/24 trust paf2 pg_autoctl create postgres --hostname paf2 --auth trust --ssl-self-signed --monitor 'postgres://autoctl_node@paf1:5432/pg_auto_failover?sslmode=require' --run paf3 pg_autoctl create postgres --hostname paf3 --auth trust --ssl-self-signed --monitor 'postgres://autoctl_node@paf1:5432/pg_auto_failover?sslmode=require' --run 杀主之后,备升为主 踩的坑 paf3用paf2复制的虚拟机,在paf3上抓包能抓到paf2的包,且到paf1抓包出不去
这篇关于pg_auto_failover的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15Tailwind开发入门教程:从零开始搭建第一个项目
- 2024-11-14Emotion教程:新手入门必备指南
- 2024-11-14音频生成的秘密武器:扩散模型在音乐创作中的应用
- 2024-11-14从数据科学家到AI开发者:2023年构建生成式AI网站应用的经验谈
- 2024-11-14基于AI的智能调试助手创业点子:用代码样例打造你的调试神器!
- 2024-11-14受控组件学习:从入门到初步掌握
- 2024-11-14Emotion学习入门指南
- 2024-11-14Emotion学习入门指南
- 2024-11-14获取参数学习:初学者指南
- 2024-11-14受控组件学习:从入门到实践