欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

【PostgreSQL】數據庫備份與恢復(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)建站專注于淮上企業(yè)網站建設,成都響應式網站建設,商城網站制作。淮上網站建設公司,為淮上等地區(qū)提供建站服務。全流程按需策劃,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務

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

當前文章:【PostgreSQL】數據庫備份與恢復(pg_rman)-創(chuàng)新互聯(lián)
轉載來于:http://www.chinadenli.net/article14/dhegde.html

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

廣告

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

商城網站建設