成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Postgresql高可用之repmgr+keepalived+流復(fù)制架構(gòu)搭建

IT那活兒 / 1905人閱讀
Postgresql高可用之repmgr+keepalived+流復(fù)制架構(gòu)搭建
點(diǎn)擊上方“IT那活兒”公眾號,關(guān)注后了解更多內(nèi)容,不管IT什么活兒,干就完了?。?!

repmgr是一個(gè)對postgresql流復(fù)制進(jìn)行管理以及自動故障轉(zhuǎn)移的開源軟件,大大的簡化了PG流復(fù)制架構(gòu)的管理。但是repmgr不具備提供VIP功能,只能借助keepalived實(shí)現(xiàn)VIP,并確保VIP運(yùn)行在primary節(jié)點(diǎn)上。其不具備連接池功能,所以只是一個(gè)輕量級開源軟件。下面詳細(xì)介紹該架構(gòu)的詳細(xì)搭建過程。

repmgr軟件的安裝

1. 先安裝repmgr依賴的軟件包,官方推薦使用yum安裝如下組件和rpm包.
yumcheck-update
yumgroupinstall "Development Tools"
yuminstall yum-utils openjade docbook-dtds docbook-style-dsssldocbook-style-xsl
yuminstall flex libselinux-devel libxml2-devel libxslt-developenssl-devel pam-devel readline-devel
2. 下載repmgr并安裝,當(dāng)前的版本為5.2.1.
./configure&& make install

注意,確保pg_config在安裝用戶的環(huán)境變量PATH中,repmgr會默認(rèn)安裝到postgres的軟件目錄下。

PG數(shù)據(jù)庫及repmgr配置

首先完成流復(fù)制相關(guān)的參數(shù)修改和用戶創(chuàng)建,并修改pg_hba.conf文件.
createuser repluser with usperuser password ****;
createdatabase repmgr with owner=repluser;
--修改主備節(jié)點(diǎn)的pg_hba.conf文件.
local   replication repluser trust
host replication repluser 127.0.0.1/32            trust
host replication repluser 10.26.60.0/24          scram-sha-256

local repmgr repluser trust
host repmgr repluser 127.0.0.1/32            trust
host repmgr repluser 10.26.60.0/24          scram-sha-256
--修改.pgpass:
spcl-pg250:5432:repmgr:repluser:Repl#2021
spcl-pg249:5432:repmgr:repluser:Repl#2021
--修改/etc/repmgr.conf:
node_id=1
node_name=host01
conninfo=host=host01user=repluser dbname=repmgr connect_timeout=2
data_directory=/pgdata’
--注冊主節(jié)點(diǎn):
repmgr-f /etc/repmgr.conf primary register
--驗(yàn)證集群狀態(tài):
repmgr-f /etc/repmgr.conf cluster show
--創(chuàng)建從庫的/etc/repmgr.conf文件:
node_id=2
node_name=host02
conninfo=host=host02user=repluser dbname=repmgr connect_timeout=2
data_directory=/pgdata
--進(jìn)行從庫搭建前的檢測:
[postgres@host02pgdata]$ repmgr -h host01 -U repluser -d repmgr -f/pgdata/repmgr.conf standby clone --dry-run
NOTICE:destination directory "/pgdata" provided
INFO:connecting to source node
DETAIL:connection string is: host=host01 user=repluser dbname=repmgr
DETAIL:current installation size is 31 MB
INFO:"repmgr" extension is installed in database "repmgr"
INFO:replication slot usage not requested; no replication slot will beset up for this standby
INFO:parameter "max_wal_senders" set to 32
NOTICE:checking for available walsenders on the source node (2 required)
INFO:sufficient walsenders available on the source node
DETAIL:2 required, 31 available
NOTICE:checking replication connections can be made to the source server (2required)
INFO:required number of replication connections could be made to thesource server
DETAIL:2 replication connections required
WARNING:data checksums are not enabled and "wal_log_hints" is "off"
DETAIL:pg_rewind requires "wal_log_hints" to be enabled
NOTICE:standby will attach to upstream node 1
HINT:consider using the -c/--fast-checkpoint option
INFO:all prerequisites for "standby clone" are met
--執(zhí)行以下命令完成從庫搭建:
repmgr-h host01 -U repluser -d repmgr -f /etc/repmgr.conf standby clone
注意:如果數(shù)據(jù)量很大,則在搭建從庫時(shí)需要加上--fast-checkpoint參數(shù),否則調(diào)用pg_basebackup備份的過程會非常慢。
---如果不是使用repmgr完成的流復(fù)制搭建,則配置連接串時(shí),需要指定application_name
repmgr-f /etc/repmgr.conf standby register
repmgr-f /etc/repmgr.conf cluster show

至此,repmgr就搭建及配置完成。

利用repmgr進(jìn)行主從切換

--直接進(jìn)行主從切換:
repmgrstandby switchover -f /etc/repmgr.conf --siblings-follow --dry-run --切換檢查
repmgr-f  /etc/repmgr.conf standby switchover
--主庫down掉后,從庫手動切換成主庫:
repmgr-f /etc/repmgr.conf standby promote ---備節(jié)點(diǎn)
repmgr-f /etc/repmgr.conf standby follow --如果有多個(gè)備節(jié)點(diǎn),在其他備節(jié)點(diǎn)執(zhí)行


配置自動failover

--修改/etc/repmgr.conf:
shared_preload_libraries = repmgr

monitor_interval_secs=2
connection_check_type=connection
reconnect_attempts==6
reconnect_interval=4
failover=automatic
promote_command=/usr/local/postgresql/bin/repmgr standby promote -f /etc/repmgr.conf --log-to-file
follow_command=/usr/local/postgresql/bin/repmgr standby follow -f /etc/repmgr.conf --log-to-file --upstream-node-id=%n
log_level=INFO
log_facility=STDERR
log_file=/data/pgdata/log/repmgr.log
log_status_interval=300
repmgrd_service_start_command = repmgrd --daemonize=true
repmgrd_service_stop_command = kill `cat /data/pgdata/repmgrd.pid`
repmgrd_pid_file= /pgdata/repmgrd.pid
--啟動守護(hù)進(jìn)程:
repmgrdaemon start

--自動failover之后需手工將原主節(jié)點(diǎn)恢復(fù)成備節(jié)點(diǎn),然后執(zhí)行repmgr-f /etc/repmgr.conf standby register --force  ,否則下次不會自動failover。

keepalived配置

keepalived在此架構(gòu)中,只作為提供VIP的工具,不進(jìn)行故障轉(zhuǎn)移操作,所以配置相對簡單,其配置如下:
  • /etc/keepalived/keepalived.conf
global_defs {
    router_id pg_ha
# enable_script_security
}


vrrp_script checkpg {
    script "/etc/keepalived/scripts/checkpg.sh"
    interval 15
    fall 3
    rise 1
}
vrrp_instance VI_pgusdp {
    state BACKUP
    interface ens160                 
    virtual_router_id 152
    priority 80
    advert_int 1
    nopreempt                       
    authentication 
{
        auth_type PASS
        auth_pass 234235
    }
    track_script {
        checkpg
    }
    notify_master "/etc/keepalived/scripts/master.sh"
    notify_backup "/etc/keepalived/scripts/slave.sh"
    virtual_ipaddress {
        10.**.**.**/24
    }
}
  • /etc/keepalived/scripts/checkpg.sh
#!/bin/bash
export PGDATABASE=postgres
export PGPORT=5432
export PGUSER=postgres
export PGBIN=/usr/local/postgresql/bin
export PGDATA=/data/pgdata
LOGFILE=/etc/keepalived/log/keepalived.log
nc -w 3 localhost 5432 a=`echo $?`
if [ $a -eq 1 ] ;then
exit 1
else
        SQL1=SELECT pg_is_in_recovery from pg_is_in_recovery();
        db_role=`echo $SQL1  | ${PGBIN}/psql -d $PGDATABASE -U $PGUSER -h $PGDATA -At -w`
        if [ $db_role == t ];then
                exit 1
        fi
fi
  • /etc/keepalived/scripts/master.sh
LOGFILE=/etc/keepalived/log/keepalived.log
export PGDATABASE=postgres
export PGPORT=5432
export PGUSER=postgres
export PGBIN=/usr/local/postgresql/bin
export PGDATA=/data/pgdata
LOGFILE=/etc/keepalived/log/keepalived.log
SQL1=SELECT pg_is_in_recovery from pg_is_in_recovery();
db_role=`echo $SQL1  | ${PGBIN}/psql -d $PGDATABASE -U $PGUSER -h $PGDATA -At -w`
if [ $db_role == t ];then
   echo -e `date +"%F %T"` "the current database is standby DB! " >> $LOGFILE
  exit 1
else
   echo -e `date +"%F %T"` "the current database is master DB!" >> $LOGFILE
fi
  • /etc/keepalived/scripts/slave.sh
LOGFILE=/etc/keepalived/log/keepalived.log
export PGDATABASE=postgres
export PGPORT=5432
export PGUSER=postgres
export PGBIN=/usr/local/postgresql/bin
export PGDATA=/data/pgdata
LOGFILE=/etc/keepalived/log/keepalived.log
SQL1=SELECT pg_is_in_recovery from pg_is_in_recovery();
 db_role=`echo $SQL1  | ${PGBIN}/psql -d $PGDATABASE -U $PGUSER -h $PGDATA -At -w`
 if [ $db_role == t ];then
   echo -e `date +"%F %T"` "the current database is standby DB! " >> $LOGFILE
else
   echo -e `date +"%F %T"` "the current database is master DB!" >> $LOGFILE
fi




本文作者劉運(yùn)彬(上海新炬王翦團(tuán)隊(duì))

本文來源:“IT那活兒”公眾號

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/129213.html

相關(guān)文章

  • 新書推薦 |《PostgreSQL實(shí)戰(zhàn)》出版(提供樣章下載)

    摘要:作者譚峰張文升出版日期年月頁數(shù)頁定價(jià)元本書特色中國開源軟件推進(jìn)聯(lián)盟分會特聘專家撰寫,國內(nèi)多位開源數(shù)據(jù)庫專家鼎力推薦。張文升中國開源軟件推進(jìn)聯(lián)盟分會核心成員之一。 很高興《PostgreSQL實(shí)戰(zhàn)》一書終于出版,本書大體上系統(tǒng)總結(jié)了筆者 PostgreSQL DBA 職業(yè)生涯的經(jīng)驗(yàn)總結(jié),本書的另一位作者張文升擁有豐富的PostgreSQL運(yùn)維經(jīng)驗(yàn),目前就職于探探科技任首席PostgreS...

    Martin91 評論0 收藏0
  • PostgreSQL 中文資料匯總

    摘要:開源數(shù)據(jù)庫中文資料非常缺乏,很多社區(qū)朋友苦于上手的中文資料少,因此匯總收集以下中文資料,包括中文手冊,中文書籍,技術(shù)博客,培訓(xùn)視頻和歷屆大會材料。希望這些中文資料能夠方便有需要的朋友,降低的上手門檻。 開源數(shù)據(jù)庫 PostgreSQL 中文資料非常缺乏,很多社區(qū)朋友苦于上手的中文資料少,因此匯總收集以下 PostgreSQL 中文資料,包括 PostgreSQL 中文手冊,中文書籍,技...

    asoren 評論0 收藏0
  • 人工智能幫助千萬用戶完成「隱形征信」計(jì)算

    摘要:量化派是一家數(shù)據(jù)驅(qū)動的科技金融公司,通過人工智能大數(shù)據(jù)機(jī)器學(xué)習(xí)等前沿技術(shù)提供消費(fèi)信貸撮合及消費(fèi)場景下的白條服務(wù),每年處理千萬級用戶信用及信用消費(fèi)申請。 「小楊」最近裝修房子,準(zhǔn)備去銀行貸款,但是聽說好多人會因?yàn)閭€(gè)人征信問題被銀行拒絕貸款!于是,他先查了一下自己的央行征信,發(fā)現(xiàn)竟然沒有自己的征信信息,「小楊」陷入了沉思,自己經(jīng)常在淘寶、jd 上買東西,也有淘寶花唄和京東白條,怎么會沒有征...

    Developer 評論0 收藏0
  • 基于騰訊云CVM自建可用Redis實(shí)踐

    摘要:環(huán)境說明需求與目標(biāo)本文將通過對目前主流的幾種高可用方案進(jìn)行對比分析,并基于騰訊云和等基礎(chǔ)產(chǎn)品進(jìn)行搭建配置測試總結(jié)。 本文來源 | 云+社區(qū)專欄文章作者 | 萬守兵,騰訊云資深架構(gòu)師。8年以上大型互聯(lián)網(wǎng)公司運(yùn)維工作經(jīng)驗(yàn),騰訊云資深遷云架構(gòu)師,一直從事大型互聯(lián)網(wǎng)服務(wù)端架構(gòu)設(shè)計(jì)和優(yōu)化工作。個(gè)人專注于云計(jì)算、k8s和 DevOps領(lǐng)域。 導(dǎo)讀:在企業(yè)實(shí)際生產(chǎn)環(huán)境中為了能夠給業(yè)務(wù)上層應(yīng)用提供高...

    DataPipeline 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<