91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

【PostgreSQL】數據庫備份與恢復(pg_rman)

發布時間:2020-02-28 17:03:07 來源:網絡 閱讀:550 作者:NOGYMS 欄目:數據庫
[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


向AI問一下細節

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

AI

镇江市| 博客| 瑞安市| 扶余县| 塔城市| 黑龙江省| 贵溪市| 新余市| 江西省| 牡丹江市| 新竹市| 根河市| 奈曼旗| 哈巴河县| 桂阳县| 晴隆县| 四平市| 武乡县| 嘉黎县| 托克逊县| 滨海县| 九寨沟县| 托里县| 富锦市| 微山县| 鲁甸县| 弥渡县| 买车| 旅游| 西峡县| 比如县| 乐亭县| 昭苏县| 大理市| 天峨县| 习水县| 溆浦县| 怀宁县| 定兴县| 隆昌县| 全州县|