【PostgreSQL】數(shù)據(jù)庫(kù)備份與恢復(fù)(pg_rman)-創(chuàng)新互聯(lián)

[root@wallet01?~]#?rpm?-ivh?pg_rman-1.3.8-1.pg96.rhel6.x86_64.rpm

[root@wallet01?~]#?su?-?postgres

[postgres@wallet01?~]$?mkdir?archive
[postgres@wallet01?~]$?mkdir?backup

[postgres@wallet01?~]$?vi?/var/lib/pgsql/9.6/data/postgresql.conf
archive_mode?=?on
archive_command?=?'cp?%p?/home/postgres/archive/%f'?
wal_level?=?archive

[postgres@wallet01?~]$?pg_ctl?restart
waiting?for?server?to?shut?down.......?done
server?stopped
server?starting

[postgres@wallet01?~]$?export?PGDATA=/var/lib/pgsql/9.6/data
[postgres@wallet01?~]$?export?ARCLOG_PATH=/home/postgres/archive
[postgres@wallet01?~]$?export?BACKUP_PATH=/home/postgres/backup

[postgres@wallet01?~]$?pg_rman?init
INFO:?ARCLOG_PATH?is?set?to?'/home/postgres/archive'
INFO:?SRVLOG_PATH?is?set?to?'/var/lib/pgsql/9.6/data/pg_log'

[postgres@wallet01?~]$?pg_rman?backup?--backup-mode=full
INFO:?copying?database?files
INFO:?copying?archived?WAL?files
INFO:?backup?complete
INFO:?Please?execute?'pg_rman?validate'?to?verify?the?files?are?correctly?copied.

[postgres@wallet01?~]$?pg_rman?validate
INFO:?validate:?"2019-04-12?16:02:15"?backup?and?archive?log?files?by?CRC
INFO:?backup?"2019-04-12?16:02:15"?is?valid

[postgres@wallet01?~]$?pg_rman?show
=====================================================================
?StartTime???????????EndTime??????????????Mode????Size???TLI??Status?
=====================================================================
2019-04-12?16:02:15??2019-04-12?16:03:21??FULL??1572MB?????1??OK

[postgres@wallet01?~]$?pg_rman?backup?--backup-mode=incremental
INFO:?copying?database?files
INFO:?copying?archived?WAL?files
INFO:?backup?complete
INFO:?Please?execute?'pg_rman?validate'?to?verify?the?files?are?correctly?copied.

[postgres@wallet01?~]$?pg_rman?validate
INFO:?validate:?"2019-04-12?16:15:12"?backup?and?archive?log?files?by?CRC
INFO:?backup?"2019-04-12?16:15:12"?is?valid

[postgres@wallet01?~]$?pg_rman?show
=====================================================================
?StartTime???????????EndTime??????????????Mode????Size???TLI??Status?
=====================================================================
2019-04-12?16:15:12??2019-04-12?16:15:17??INCR???248MB?????1??OK
2019-04-12?16:02:15??2019-04-12?16:03:21??FULL??1572MB?????1??OK

[postgres@wallet01?~]$?pg_rman?backup?--backup-mode=archive
INFO:?copying?archived?WAL?files
INFO:?backup?complete
INFO:?Please?execute?'pg_rman?validate'?to?verify?the?files?are?correctly?copied.

[postgres@wallet01?~]$?pg_rman?validate
INFO:?validate:?"2019-04-12?16:30:04"?archive?log?files?by?CRC
INFO:?backup?"2019-04-12?16:30:04"?is?valid

[postgres@wallet01?~]$?pg_rman?show
=====================================================================
?StartTime???????????EndTime??????????????Mode????Size???TLI??Status?
=====================================================================
2019-04-12?16:30:04??2019-04-12?16:30:06??ARCH????33MB?????1??OK
2019-04-12?16:15:12??2019-04-12?16:15:17??INCR???248MB?????1??OK
2019-04-12?16:02:15??2019-04-12?16:03:21??FULL??1572MB?????1??OK

[postgres@wallet01?~]$?pg_ctl?stop?-m?fast
waiting?for?server?to?shut?down......?done
server?stopped

[postgres@wallet01?~]$?mv?archive?archive_backup
[postgres@wallet01?~]$?mkdir?archive

[postgres@wallet01?~]$?cd?/var/lib/pgsql/9.6
[postgres@wallet01?9.6]$?mv?data?data_backup
[postgres@wallet01?9.6]$?mkdir?data
[postgres@wallet01?9.6]$?chmod?-R?0700?data

[postgres@wallet01?~]$?pg_rman?restore?--hard-copy
WARNING:?pg_controldata?file?"/var/lib/pgsql/9.6/data/global/pg_control"?does?not?exist
INFO:?the?recovery?target?timeline?ID?is?not?given
INFO:?use?timeline?ID?of?latest?full?backup?as?recovery?target:?1
INFO:?calculating?timeline?branches?to?be?used?to?recovery?target?point
INFO:?searching?latest?full?backup?which?can?be?used?as?restore?start?point
INFO:?found?the?full?backup?can?be?used?as?base?in?recovery:?"2019-04-12?16:02:59"
INFO:?copying?online?WAL?files?and?server?log?files
INFO:?clearing?restore?destination
INFO:?validate:?"2019-04-12?16:02:59"?backup?and?archive?log?files?by?SIZE
INFO:?backup?"2019-04-12?16:02:59"?is?valid
INFO:?restoring?database?files?from?the?full?mode?backup?"2019-04-12?16:02:59"
INFO:?searching?incremental?backup?to?be?restored
INFO:?validate:?"2019-04-12?16:15:12"?backup?and?archive?log?files?by?SIZE
INFO:?backup?"2019-04-12?16:15:12"?is?valid
INFO:?restoring?database?files?from?the?incremental?mode?backup?"2019-04-12?16:15:12"
INFO:?searching?backup?which?contained?archived?WAL?files?to?be?restored
INFO:?backup?"2019-04-12?16:15:12"?is?valid
INFO:?restoring?WAL?files?from?backup?"2019-04-12?16:15:12"
INFO:?validate:?"2019-04-12?16:30:04"?archive?log?files?by?SIZE
INFO:?backup?"2019-04-12?16:30:04"?is?valid
INFO:?restoring?WAL?files?from?backup?"2019-04-12?16:30:04"
INFO:?restoring?online?WAL?files?and?server?log?files
INFO:?generating?recovery.conf
INFO:?restore?complete
HINT:?Recovery?will?start?automatically?when?the?PostgreSQL?server?is?started.

[postgres@wallet01?~]$?pg_ctl?start
server?starting

[postgres@wallet01?~]$?pg_ctl?status
pg_ctl:?server?is?running?(PID:?29889)
/usr/pgsql-9.6/bin/postgres

創(chuàng)新互聯(lián)建站專(zhuān)注于淮上企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站制作?;瓷暇W(wǎng)站建設(shè)公司,為淮上等地區(qū)提供建站服務(wù)。全流程按需策劃,專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前文章:【PostgreSQL】數(shù)據(jù)庫(kù)備份與恢復(fù)(pg_rman)-創(chuàng)新互聯(lián)
轉(zhuǎn)載來(lái)于:http://muchs.cn/article14/dhegde.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作、云服務(wù)器、網(wǎng)站建設(shè)用戶體驗(yàn)、網(wǎng)站設(shè)計(jì)公司做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)