真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

k8s中postgres基于PITR備份還原

參考網(wǎng)站:

postgres官網(wǎng)備份PITR文檔

創(chuàng)新互聯(lián)建站專注于玉門企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),電子商務(wù)商城網(wǎng)站建設(shè)。玉門網(wǎng)站建設(shè)公司,為玉門等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)

Postgresql 連續(xù)歸檔和時間點(diǎn)恢復(fù)(PITR)

1、在k8s創(chuàng)建postgres數(shù)據(jù)庫

[用于創(chuàng)建postgres的yaml文件下載()

需要修改70-statefulsets-postgres.yaml文件中的數(shù)據(jù)持久化方式,即

storageClassName: 'nfs-client'  #這里的nfs-client修改為自己k8s的持久化設(shè)備,這里使用的是已經(jīng)搭建好的nfs服務(wù)

啟動postgres數(shù)據(jù)庫:

wget xxxxxxx.xxxxxx               #下載postgres數(shù)據(jù)庫啟動需要的yaml文件
kubectl create namespace postgres #創(chuàng)建一個名叫postgres的namespace
kubens postgres                   #進(jìn)入這個namespace,kubens工具的作用是切換namespace需要去gitghub搜索kubectx工具,二進(jìn)制安裝即可使用
kubectl apply -f postgres/*.yaml  #啟動postgres數(shù)據(jù)庫,所有動作在postgres這個namespace完成

在postgres文件的配置文件中要打開的內(nèi)容:

vim postgresql.conf
wal_level='hot_standby'    #wal_level至少設(shè)置為replica
archive_mode='on'
archive_command='test ! -f /backup/archivedir/%f && cp %p /backup/archivedir/%f'

查看postgres數(shù)據(jù)庫是否啟動完成:

lopes-MacBook-Pro:postgres-demo_wal2json lope$ kubectl get pods
NAME? ? ? ? ?READY? ?STATUS? ? RESTARTS? ?AGE
postgres-0? ?1/1? ? ?Running? ?0? ? ? ? ? 38m

postgres在k8s啟動成功。

2、數(shù)據(jù)準(zhǔn)備

進(jìn)入postgres操作

kubens postgres    #進(jìn)入postgres所在的namespace
kubectl exec -it postgres-0 sh   #進(jìn)入postgres命令

備份基礎(chǔ)數(shù)據(jù)庫文件

pg_basebackup   -D /backup/backup  -h postgres-0   -Fp  -R   -Pv  -l postgrebackup-20191112  #此文件為恢復(fù)的基礎(chǔ)文件

創(chuàng)建postgres日志備份目錄

mkdir /backup/archivedir   #以后postgres的日志會自動導(dǎo)入這個目錄,也是PITR的關(guān)鍵

創(chuàng)建測試用表

psql   #進(jìn)入postgres數(shù)據(jù)庫
\c sso #選擇sso數(shù)據(jù)庫
\d     #查看該數(shù)據(jù)庫下沒有表
create table test01(id int primary key,name varchar(20));
insert into test01 values(1,'a'),(2,'b'),(3,'c');
select current_timestamp;   #  2019-11-12 06:04:50.71881+00
select pg_switch_wal();     #   0/A000158

刪除測試用表

delete from test01;
select current_timestamp;   #   2019-11-12 06:07:36.529161+00
select pg_switch_wal();     #    0/C000000

3、數(shù)據(jù)恢復(fù)演示

修改/backup/backup/recovery.done文件(若是recovery.conf,則該為recovery.done)

vim recovery.done
restore_command='cp /backup/archivedir/%f %p'
recovery_target_time='2019-11-12 06:04:50.71881+00'  # 這里的時間修改為想要恢復(fù)的時間點(diǎn)
recovery_target_timeline='latest'

基礎(chǔ)數(shù)據(jù)文件恢復(fù)

mv /pgdata/postgres-0 /pgdata/postgres-0_bak        #破壞原數(shù)據(jù)文件
cp -r /backup/backup /pgdata/postgres-0             #將備份文件拷貝為數(shù)據(jù)庫文件
cd postgres-0

rm -rf pg_wal/0 && rm -rf pg_wal/archive_status/ #刪除老日志文件,以便PITR通過日志恢復(fù)

重啟postgres,使之自動進(jìn)入恢復(fù)模式

kubectl delete pods postgres-0
kubectl get pods   

重啟成功后,即可進(jìn)入數(shù)據(jù)庫檢查是否已經(jīng)恢復(fù)到預(yù)定的數(shù)據(jù)。

kubectl exec -it postgres-0 sh
psql
\c sso
\d
select * from test01;

如果出現(xiàn)操作失誤,導(dǎo)致不能進(jìn)入postgres的pod,可以將該pod的pvc刪除后,重啟pod即可重新操作。

?kubectl scale sts postgres --replicas=0  #先要關(guān)閉postgres才能刪除pvc
lopes-MacBook-Pro:postgres-demo_wal2json lope$ kubectl get pvc
NAME? ? ? ? ? ? ? ? STATUS? ?VOLUME? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?CAPACITY? ?ACCESS MODES? ?STORAGECLASS? ?AGE
backup-postgres-0? ?Bound? ? pvc-1be89954-98f9-4f9d-a15a-780d5432d38a? ?30Gi? ? ? ?RWO? ? ? ? ? ? nfs-client? ? ?122m
pgdata-postgres-0? ?Bound? ? pvc-6f25fd78-282c-4604-a2f6-e9a8c767e002? ?30Gi? ? ? ?RWO? ? ? ? ? ? nfs-client? ? ?71m
lopes-MacBook-Pro:postgres-demo_wal2json lope$ kubectl delete pvc pgdata-postgres-0                         #刪除pgdata,backup不刪除

本文題目:k8s中postgres基于PITR備份還原
本文地址:http://weahome.cn/article/gchgph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部