linux shell簡單實現資料庫自動備份

來源:互聯網
上載者:User

標籤:ash   .net   http   備份   bash   指令碼   許可權   簡單實現   name   

以centos系統為例,實現資料庫自動備份。
1、寫一個shell:

1
2
#! /bin/bash
mysqldump -cp --user=root --password=‘123‘ dbName | gzip > ~/db/dbName-`date +%Y%m%d%H`.sql.gz ;

上述shell中,root是備份時使用的使用者名稱,123是密碼,dbName是要備份的資料庫的名稱。
把這個檔案放在使用者目錄下,儲存路徑為:~/db/dbBackup.sh

儲存結束後添加執行許可權:
chmod a+x ~/db/dbBackup.sh

然後執行一下這個檔案 ,看使用是否正常,在~/db/下有沒有備份檔案產生。

2、使用crontab定時調用。crontab教程:
http://blog.csdn.net/richerg85/article/details/17887879
http://www.jb51.net/article/26645.htm

使用crontab -e命令,編輯crontab檔案,編輯方式和使用VI一樣。
新添加一行:
00 2 * * * ~/db/dbBackup.sh
表示每天2:00執行~/db/dbBackup.sh這個檔案。
儲存後,crontab -l看到有新加的資料行即可。

OVER,以後每天系統就會調用這個指令碼來備份資料了。

linux shell簡單實現資料庫自動備份

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.