我的编程空间,编程开发者的网络收藏夹
学习永远不晚

postgreSQL11备份与恢复方法是什么

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

postgreSQL11备份与恢复方法是什么

本篇内容介绍了“postgreSQL11备份与恢复方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

1、归档目录:

[postgres@centos1 arch]$ pwd
/home/postgres/arch

2、设置归档命令:

 archive_command                                             
--------------------------------------------------------------------------------------------------------
 DATE=`date +%Y%m%d`; DIR="/home/postgres/arch/$DATE"; (test -d $DIR || mkdir -p $DIR) && cp %p $DIR/%f

修改wal_level和archive_mode参数都需要重新启动数据库才可以生效,修改archive_command不需要重启,只需要reload即可:

postgres=# SELECT pg_reload_conf();

3、验证归档:

postgres=# checkpoint
postgres-# ;
CHECKPOINT
postgres=# select pg_switch_wal(); 
pg_switch_wal 
--------------- 
0/11029F08(1 row)
[postgres@centos1 20200103]$ ll
total 16M-rw------- 1 postgres postgres 16M Jan  3 10:45 000000010000000000000011

4、配置备份用户访问:

[postgres@centos1 pg_root]$ vi pg_hba.conf
host replication rep 0.0.0.0/0 md5

5、创建基础备份:

[postgres@centos1 pgbak]$ pg_basebackup -Ft  -D /home/postgres/pgbak`date +%F` -h 192.168.1.212 -p 1921 -U rep
Password:
[postgres@centos1 pgbak2020-01-03]$ ll
total 96M
-rw------- 1 postgres postgres 1.5K Jan  3 11:34 26097.tar
-rw------- 1 postgres postgres  80M Jan  3 11:34 base.tar
-rw------- 1 postgres postgres  17M Jan  3 11:34 pg_wal.tar

查看备份内容:

[postgres@centos1 pgbak2020-01-03]$ tar -tvf base.tar |less
-rw------- postgres/postgres 226 2020-01-03 11:34 backup_label
-rw------- postgres/postgres  28 2020-01-03 11:34 tablespace_map
drwx------ postgres/postgres   0 2020-01-03 11:34 pg_wal/
drwx------ postgres/postgres   0 2020-01-03 11:34 ./pg_wal/archive_status/
drwx------ postgres/postgres   0 2019-12-19 17:24 global/
-rw------- postgres/postgres 16384 2019-12-17 16:42 global/1262
-rw------- postgres/postgres 49152 2019-06-17 23:47 global/1262_fsm
-rw------- postgres/postgres     0 2019-06-17 23:47 global/2964
-rw------- postgres/postgres 16384 2020-01-03 10:45 global/1213
-rw------- postgres/postgres 49152 2019-06-17 23:47 global/1213_fsm
-rw------- postgres/postgres 16384 2019-06-17 23:47 global/1136
-rw------- postgres/postgres 49152 2019-06-17 23:47 global/1136_fsm
-rw------- postgres/postgres 16384 2019-12-17 11:49 global/1260

6、生成测试恢复数据:

postgres=# create table test_bk (id int) tablespace tbs_pg01;
CREATE TABLE
postgres=# insert into test_bk values(1),(2);
INSERT 0 2

由于WAL文件是写满16MB才会进行归档,测试阶段可能写入会非常少,可以在执行完 基础备份之后,手动进行一次WAL切换。如:

postgres=# checkpoint;
CHECKPOINT
postgres=# select pg_switch_wal();
 pg_switch_wal 
---------------
 0/14027F78
(1 row)

7、还原部分

关闭数据库:

[postgres@centos1 ~]$ pg_ctl stop
waiting for server to shut down.... done
server stopped
[postgres@centos1 ~]$ ipcs

移除数据库 及表空间

[postgres@centos1 ~]$ mv pgdata pgdatatbbk
[postgres@centos1 ~]$ mv pg_root pg_rootbk

将备份文件拷贝到原目录

[postgres@centos1 ~]$ echo $PGDATA
/home/postgres/pg_root
[postgres@centos1 ~]$ mkdir pg_root
[postgres@centos1 ~]$ mkdir pgdata
[postgres@centos1 ~]$ cd pgbak2020-01-03
[postgres@centos1 pgbak2020-01-03]$ ll
total 96M
-rw------- 1 postgres postgres 1.5K Jan  3 11:34 26097.tar
-rw------- 1 postgres postgres  80M Jan  3 11:34 base.tar
-rw------- 1 postgres postgres  17M Jan  3 11:34 pg_wal.tar
[postgres@centos1 pgbak2020-01-03]$ cp 26097.tar /home/postgres/pgdata
[postgres@centos1 pgbak2020-01-03]$ cp base.tar $PGDATA
[postgres@centos1 pgbak2020-01-03]$ cp pg_wal.tar  $PGDATA
[postgres@centos1 pgbak2020-01-03]$ cd $PGDATA
[postgres@centos1 pg_root]$ ll
total 96M
-rw------- 1 postgres postgres 80M Jan  3 12:06 base.tar
-rw------- 1 postgres postgres 17M Jan  3 12:07 pg_wal.tar

解压base:

[postgres@centos1 pg_root]$ tar -xvf base.tar

解压表空间:

[postgres@centos1 pgdata]$ tar -xvf 26097.tar 
PG_11_201809051/
[postgres@centos1 pgdata]$ ll
total 4.0K
-rw------- 1 postgres postgres 1.5K Jan  3 12:06 26097.tar
drwx------ 2 postgres postgres    6 Jan  2 20:07 PG_11_201809051

解压归档文件:

[postgres@centos1 pg_root]$ tar -xvf pg_wal.tar 
000000010000000000000013
archive_status/000000010000000000000013.done

拷贝恢复文件

[postgres@centos1 pg_root]$ cp /opt/postgresql/share/recovery.conf.sample recovery.conf
配置恢复文件命令:
vi recovery.conf
restore_command = 'cp /home/postgres/arch/20200103/%f %p'

启动数据库:

[postgres@centos1 pg_root]$ pg_ctl start

waiting for server to start....2020-01-03 13:05:16.488 CST [21872] FATAL:  data directory "/home/postgres/pg_root" has invalid permissions
2020-01-03 13:05:16.488 CST [21872] DETAIL:  Permissions should be u=rwx (0700) or u=rwx,g=rx (0750).
 stopped waiting
pg_ctl: could not start server
Examine the log output.

报错,修改权限:

[postgres@centos1 ~]$ chmod -R 750 ./pg_root

启动数据库:

[postgres@centos1 ~]$ pg_ctl start 
waiting for server to start....2020-01-03 13:09:16.927 CST [22152] LOG:  listening on IPv4 address "0.0.0.0", port 1921
2020-01-03 13:09:16.972 CST [22152] LOG:  listening on Unix socket "/tmp/.s.PGSQL.1921"
2020-01-03 13:09:17.035 CST [22153] LOG:  database system was interrupted; last known up at 2020-01-03 11:34:44 CST
2020-01-03 13:09:17.035 CST [22153] LOG:  creating missing WAL directory "pg_wal/archive_status"
2020-01-03 13:09:17.446 CST [22153] LOG:  starting archive recovery
2020-01-03 13:09:17.457 CST [22153] LOG:  restored log file "000000010000000000000013" from archive
2020-01-03 13:09:17.700 CST [22153] LOG:  redo starts at 0/13000028
2020-01-03 13:09:17.726 CST [22153] LOG:  consistent recovery state reached at 0/13000130
2020-01-03 13:09:17.727 CST [22152] LOG:  database system is ready to accept read only connections
2020-01-03 13:09:17.743 CST [22153] LOG:  restored log file "000000010000000000000014" from archive
 done
server started
[postgres@centos1 ~]$ 2020-01-03 13:09:17.920 CST [22153] LOG:  restored log file "000000010000000000000015" from archive
cp: cannot stat ‘/home/postgres/arch/20200103/000000010000000000000016’: No such file or directory
2020-01-03 13:09:18.084 CST [22153] LOG:  redo done at 0/15000140
2020-01-03 13:09:18.085 CST [22153] LOG:  last completed transaction was at log time 2020-01-03 11:40:52.26971+08
2020-01-03 13:09:18.125 CST [22153] LOG:  restored log file "000000010000000000000015" from archive
cp: cannot stat ‘/home/postgres/arch/20200103/00000002.history’: No such file or directory
2020-01-03 13:09:18.310 CST [22153] LOG:  selected new timeline ID: 2
2020-01-03 13:09:18.477 CST [22153] LOG:  archive recovery complete
cp: cannot stat ‘/home/postgres/arch/20200103/00000001.history’: No such file or directory
2020-01-03 13:09:18.840 CST [22152] LOG:  database system is ready to accept connections

启动完成,查看表是否存在:

[postgres@centos1 ~]$ psql
psql (11.3)
Type "help" for help.
pgdb=# \c postgres
You are now connected to database "postgres" as user "postgres".
postgres=# select * from test_bk;
 id 
----
  1
  2

恢复完成,恢复文件会变成.done

-rwxr-x--- 1 postgres postgres 5.7K Jan  3 13:00 recovery.done

顺便记一下逻辑备份的部分嘿嘿

逻辑备份

[postgres@centos1 dump]$ pg_dump -F c -f ./pgdb.dmp -C -E UTF8 -h 192.168.1.212 -p 1921 -U postgres -d pgdb

查看备份文件

[postgres@centos1 dump]$ pg_restore -l ./pgdb.dmp

“postgreSQL11备份与恢复方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

postgreSQL11备份与恢复方法是什么

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

win11备份与恢复的方法是什么

Windows 11 提供了多种备份和恢复方法,以下是几种常用的方法:1. 使用 Windows 備份與還原工具:Windows 11 附带了备份和还原工具(Backup and Restore),可以创建系统映像和文件备份。你可以在 "设
2023-09-02

MySQLdump增量备份、完全备份与恢复的方法是什么

本篇内容主要讲解“MySQLdump增量备份、完全备份与恢复的方法是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“MySQLdump增量备份、完全备份与恢复的方法是什么”吧!在数据库表丢失或
2023-06-16

mongodb备份和恢复的方法是什么

在MongoDB中,可以使用mongodump和mongorestore命令来备份和恢复数据库。备份数据:使用mongodump命令来备份整个数据库或指定的集合。示例:mongodump --db --ou
mongodb备份和恢复的方法是什么
2024-04-09

PostgreSQL备份与恢复策略是什么

PostgreSQL备份与恢复策略是指在使用PostgreSQL数据库时,为了保障数据安全和可靠性,需要定期备份数据库,并能够在需要时进行恢复的一系列操作和规范。主要包括以下几个方面:定期备份:定期对数据库进行备份,可以选择全量备份或增量备
PostgreSQL备份与恢复策略是什么
2024-04-09

pgsql集群备份恢复的方法是什么

在 PostgreSQL 集群中进行备份和恢复通常使用以下方法:使用 pg_dump 工具备份数据库:可以使用 pg_dump 工具从 PostgreSQL 集群中备份数据库。例如,使用以下命令备份一个数据库:pg_dump -h host
pgsql集群备份恢复的方法是什么
2024-04-09

MongoDB的备份与恢复策略是什么

MongoDB的备份与恢复策略一般包括以下几个方面:数据备份:MongoDB可以通过mongodump命令来备份数据,该命令会将数据库中的所有数据导出为BSON格式的文件。可以根据需要定期执行备份操作,保证数据的安全性。日志备份:Mongo
MongoDB的备份与恢复策略是什么
2024-05-07

windows注册表备份恢复的方法是什么

Windows注册表是一个非常重要的系统组件,包含了操作系统和安装的应用程序的配置信息。因此,备份和恢复注册表非常重要,以防止不可预测的问题和数据丢失。以下是Windows注册表备份和恢复的方法:备份注册表:1. 打开“运行”对话框,可以通
2023-09-08

Linux系统的备份和恢复方法是什么

这篇文章主要介绍“Linux系统的备份和恢复方法是什么”,在日常操作中,相信很多人在Linux系统的备份和恢复方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux系统的备份和恢复方法是什么”的疑
2023-06-15

mongodb数据备份和恢复的方法是什么

在MongoDB中,可以使用mongodump和mongorestore命令来备份和恢复数据。下面是备份和恢复数据的步骤:备份数据:使用mongodump命令可以备份MongoDB数据库的数据。以下是备份数据的命令:mongodump -
mongodb数据备份和恢复的方法是什么
2024-04-10

Gitlab的备份恢复与升级方法

这篇文章主要介绍了Gitlab的备份恢复与升级方法的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Gitlab的备份恢复与升级方法文章都会有所收获,下面我们一起来看看吧。一、数据备份先打开/etc/gitlab/
2023-06-27

虚拟主机mysql备份恢复的方法是什么

虚拟主机上的MySQL备份恢复的方法如下:1. 使用phpMyAdmin进行备份和恢复:phpMyAdmin是一个基于Web的MySQL数据库管理工具,大多数虚拟主机都会提供该工具。您可以使用phpMyAdmin导出数据库并保存为SQL文件
2023-08-08

编程热搜

目录