使用shell備份網站和資料庫

來源:互聯網
上載者:User

標籤:shell

#/bin/bash

BackuPath=/opt/backup/

WebPath=/usr/local/apache2/htdocs/

DATE=`date +%Y%m%d`

WebBakFIle=web${DATE}.tar.bz2

DBFile=DB${DATE}.tar.bz2

DBuser=‘root‘

DBpassword=‘123‘

FTPserver=192.168.1.107

FtpTargetPath=‘ftp/backup‘


cd $WebPath

pwd


tar jcf $WebBakFIle * | mv $WebBakFIle $BackuPath

for db in ` mysql -u$DBuser -p$DBpassword -B -N -e ‘show databases;‘ `

do

 mysqldump -u$DBuser -p$DBpassword --single-transaction  $db > ${db}.sql


done

for sqlfile in `ls -l | grep ".sql" | awk ‘{print $8}‘`

do

tar jcf $DBFile $sqlfile | mv $DBFile $BackuPath

done


cd  $BackuPath

pwd

ftp -v -n $FTPserver << END

user lbx qwe123

bin

cd $FtpTargetPath

ls -l

put $DBFile

put $WebBakFIle

bye

END



檔案被成功備份:650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/4D/56/wKiom1RPrLegsJB1AAOgZMO02CM727.jpg" title="2014-10-28 22:47:52 的螢幕.png" alt="wKiom1RPrLegsJB1AAOgZMO02CM727.jpg" />



每晚淩晨4點自動備份:

[[email protected] opt]# crontab -l

0 4 * * * bash /opt/echo.sh


本文出自 “龍愛雪琪” 部落格,請務必保留此出處http://dragon123.blog.51cto.com/9152073/1569011

使用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.