亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Postgresq9.6主從部署

發布時間:2020-05-30 21:58:45 來源:網絡 閱讀:7176 作者:KaliArch 欄目:數據庫

Postgresq9.6主從部署

實驗環境

名稱

IP

系統

Master

172.17.10.190

Centos 6.5

Slave

172.17.10.189

Centos 6.5

1.yun安裝

rpm -ivh https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm
yum install postgresql96.x86_64 postgresql96-server.x86_64 -y

2.主從配置

2.1 主數據庫配置

啟動master

/etc/init.d/postgresql-9.6 initdb
/etc/init.d/postgresql-9.6 start
su - postgres
psql

授權

create role repl login replication encrypted password '51idc.com';

編輯hba文件

/var/lib/pgsql/9.6/data/pg_hba.conf

新增

host    replication     repl            172.17.10.0/24         md5
host    all            repl            172.17.10.0/24         trust

編輯配置文件

/var/lib/pgsql/9.6/data/postgresql.conf

listen_addresses = 172.17.10.190
wal_level = hot_standby  #熱備模式
max_wal_senders= 6 #可以設置最多幾個流復制鏈接,差不多有幾個從,就設置多少
wal_keep_segments = 10240  #重要配置 
wal_send_timeout = 60s 
max_connections = 512 #從庫的 max_connections要大于主庫
archive_mode = on #允許歸檔 
archive_command = 'cp %p /url/path%f'   #根據實際情況設置

2.2 從數據庫配置

su - postgres

如果開始為啟動數據庫可忽略下一步

rm -rf /var/lib/pgsql/9.6/data/*  #開始沒有啟動從數據庫,這一步可以省略 
pg_basebackup -h 172.17.10.190 -U repl -D /var/lib/pgsql/9.6/data -X stream -P
cp /usr/pgsql-9.6/share/recovery.conf.sample /var/lib/pgsql/9.6/data/recovery.conf

修改配置文件recovery.conf

standby_mode = on
primary_conninfo = 'host=172.17.10.190 port=5432 user=repl password=51idc.com'
trigger_file = '/var/lib/pgsql/9.6/data/trigger.kenyon'    #主從切換時后的觸發文件
recovery_target_timeline = 'latest'

配置postgresql.conf文件

listen_addresses = 172.17.10.189
wal_level = hot_standby 
max_connections = 1000 #一般從的最大鏈接要大于主的。 
hot_standby = on #說明這臺機器不僅僅用于數據歸檔,也用于查詢 
max_standby_streaming_delay = 30s 
wal_receiver_status_interval = 10s #多久向主報告一次從的狀態。 
hot_standby_feedback = on #如果有錯誤的數據復制,是否向主進行范例

檢測

select client_addr,sync_state from pg_stat_replication;

Postgresq9.6主從部署

查看主從狀態

select * from pg_stat_replication;

Postgresq9.6主從部署

腳本監控主從

github地址


#!/bin/bash
# mail  xuel@51idc.com
data=`date +%Y-%M-%d" "%H:%m`
netstat -lntup|grep 5432 && ps -ef|grep postmaster
if [ $? -eq 0 ];then
for IP in 172.17.10.188 172.17.10.189
do
/usr/bin/psql -h 172.17.10.190 -p 5432 -U repl -d postgres --command "select * from pg_stat_replication"|grep $IP
if [ "$?" != "0" ];then
echo
 "postgresql master-slave status is error! please login check!"|mail -r 
"xuel@51idc.com" -s "postgresql master-slave status is error" 
xuel@51idc.com \
&& echo "$data postgresql postgresql master-slave status is error!">>/var/log/postgresql-error.log
fi
done
else
echo
 "postgresql master-slave status is error! please login check!"|mail -r 
"xuel@51idc.com" -s "postgresql master-slave status is error" 
xuel@51idc.com \
&& echo "$data postgresql postgresql master-slave status is error!">>/var/log/postgresql-error.log
fi

2.3主從切換

主庫查看進程為sender

Postgresq9.6主從部署

備庫

Postgresq9.6主從部署

停止主庫

Postgresq9.6主從部署

查看slave的日志

Postgresq9.6主從部署

創建觸發文件,切換主

touch trigger.kenyon

Postgresq9.6主從部署

查看slave的日志,面前已經切換為主

Postgresq9.6主從部署

使用pg_controldata

Postgresq9.6主從部署

Postgresq9.6主從部署

備機狀態為: in archive recovery

主庫狀態為:in production

 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴安县| 虎林市| 鹿邑县| 永胜县| 麦盖提县| 师宗县| 揭阳市| 邵武市| 泊头市| 黄石市| 金乡县| 铁岭市| 广平县| 右玉县| 瑞安市| 营山县| 铜山县| 荥经县| 通城县| 泸州市| 沁水县| 玉树县| 新野县| 大方县| 临高县| 弥勒县| 大埔区| 石渠县| 枣阳市| 扎鲁特旗| 乌拉特中旗| 高碑店市| 石嘴山市| 仁寿县| 南汇区| 玛多县| 商河县| 巴彦淖尔市| 当雄县| 依安县| 渝北区|