码迷,mamicode.com
首页 > 数据库 > 详细

Linux配置postgresql自动备份

时间:2018-02-01 10:41:33      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:body   res   database   系统   127.0.0.1   pgsql   编写   log   creat   

1、pg_dump数据库备份命令

           /usr/pgsql-9.3/bin/pg_dump -F c -O -U dotop -h 127.0.0.1 -p 5432 -f /data/erp_data/db_backup/geyt_20170214_09_37_55.sql geyt

    
 
2.Linux配置postgresql自动备份
说明:使用系统用户dotop来备份dbuser(数据库用户)的数据库demo
1)创建系统用户dotop
    adduser dotop
2)创建数据库用户dbuser,创建demo数据库
  • [root@hst init.d]# su - postgres
  • -bash-4.1createuser --superuser dbuser
  • -bash-4.1$ psql
  • psql (9.3.5)
  • Type "help" for help.
  • postgres=# alter user dbuser with password dbuser;
  • postgres=# create database demo with encoding=‘UTF8‘ owner=dbuser;
3)在dotop根目录下编写备份脚本
  • cd /home/dotop
  • vi db_backup.sh
在db_backup.sh中输入以下内容:
#!/bin/bash
/usr/pgsql-9.3/bin/pg_dump -F c -O -U dbuser -h 127.0.0.1 -p 5432 -f /data/db_backup/demo_$(date +%Y%m%d_%H_%M_%S).sql dotop
echo "backup finished"  
保存,测试执行:/home/dotop/db_backup.sh
4)加入自动执行命令
    
vi  /etc/crontab
最后一行添加以下命令:
00 2 * * * dotop /home/dotop/db_backup.sh
意思是,每天凌晨2点执行dotop下的自动备份任务

Linux配置postgresql自动备份

标签:body   res   database   系统   127.0.0.1   pgsql   编写   log   creat   

原文地址:https://www.cnblogs.com/wydong/p/8397435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!