工作環境 Windows Server 2003 ,MySQL安裝目錄 D:Program FilesMySQLMySQL Server 5.0 , WinRAR 安裝目錄 C:Program FilesWinRAR
備份數據存儲的路徑為 E:dataBackupMySQL .下面即是windows命令行批處理命令的源文件
代碼如下:
set d=%date:~0,10%
set d=%d:-=%
set t=%time:~0,8%
set t=%t::=%
set dzxpath=dzx%p%%d%%t%.sql
set ucpath=uc%p%%d%%t%.sql
set folder=E:dataBackupMySQL
echo off
"D:Program FilesMySQLMySQL Server 5.0inmysqldump.exe" -hlocalhost --opt -uroot -pyoumysqlrootpassword discuzx > "%folder%%dzxpath%"
"C:Program FilesWinRARRAR.exe" a -ep1 -r -o+ -m5 -s -df "%folder%%dzxpath%".rar "%folder%%dzxpath%"
"D:Program FilesMySQLMySQL Server 5.0inmysqldump.exe" -hlocalhost --opt -uroot -pyoumysqlrootpassword discuzuc uc_admins uc_applications uc_badwords uc_domains uc_failedlogins uc_feeds uc_friends uc_mailqueue uc_memberfields uc_members uc_mergemembers uc_newpm uc_notelist uc_pms uc_protectedmembers uc_settings uc_sqlcache uc_tags uc_vars > "%folder%%ucpath%"
"C:Program FilesWinRARRAR.exe" a -ep1 -r -o+ -m5 -s -df "%folder%%ucpath%".rar "%folder%%dzxpath%"
rem echo "D:Program FilesMySQLMySQL Server 5.0datadiscuzx\%filepath%"
———————-
可以直接下載該.bat批處理文件: mysql_dump
這裡需要使用winrar,假定安裝在 C:Program FilesWinRAR 上面代碼裡使用的是 rar.exe 這個命令行版的rar工具(推薦),而不是winrar.exe這個圖形化版本。當然要檢查你的winrar安裝目錄裡是否有rar.exe這個文件,如果沒有,建議重新下載完整版的winrar.
這裡假定需要備份數據庫discuzx與discuzuc中的幾個表(ucenter表) [如果升級安裝discuzx,而又沒有把ucenter導入discuzx的庫裡,就是這種情況]
把上面的命令保存為 mysql_dump.bat ,雙擊即可運行。為了實現無人值守的自動化處理,可以通過系統的任務計劃定期執行這個命令。
如不會windows任務計劃請自行搜索學習,這裡恕不贅述。