【PgSQL备份】物理备份pg_rman
数据库及pg_rman版本
postgresql:(PostgreSQL) 12.3
pg_rman:pg_rman-1.3.9-pg12.tar.gz
tar -zxvf pg_rman-1.3.9-pg12.tar.gz -C /usr/local/
su - postgres
cd /usr/local/pg_rman-1.3.9-pg12
make
make install
编辑环境变量
$ id
uid=5432(postgres) gid=5432(postgres) groups=5432(postgres)
$ pwd
/home/postgres
$vi .bash_profile
export PATH=$PATH:$HOME/.local/bin:$HOME/bin:$PGHOME/bin
$ pg_rman init -B /data/db_backup
INFO: ARCLOG_PATH is set to '/data/pgsql_5432/archive/'
INFO: SRVLOG_PATH is set to '/data/pgsql_5432/logs/'
全量压缩备份
$ pg_rman backup -b full -U postgres -Z -h 127.0.0.1 -p 5432
Password for user postgres:
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.
增量压缩备份
pg_rman backup -b incremental -U postgres -Z -h 127.0.0.1 -p 5432
查看备份
pg_rman show
备份校验(每次备份完,必须要做一次校验,否则备份集不可用来恢复,增量备份时也不会用它来做增量比较)
pg_rman validate
还原备份
pg_rman restore --recovery-target-time “2020-06-11 23:00:00”;
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
2018-06-20 MySQL的性能指标计算和优化方法
2018-06-20 mysqlbinlog读懂binlog