Linux配置postgresql自動備份

來源:互聯網
上載者:User

標籤:body   res   database   系統   127.0.0.1   pgsql   編寫   log   creat   

1、pg_dumpDatabase Backup命令

           /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資料庫
  • [[email protected] init.d]# su - postgres
  • -bash-4.1$ createuser --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 dotopecho "backup finished"  儲存,測試執行:/home/dotop/db_backup.sh 4)加入自動執行命令    vi  /etc/crontab最後一行添加以下命令:00 2 * * * dotop /home/dotop/db_backup.sh意思是,每天淩晨2點執行dotop下的自動備份任務

Linux配置postgresql自動備份

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.