Home >Database >Mysql Tutorial >windows下mysql自动定期备份并压缩(以discuz论坛为例)_MySQL

windows下mysql自动定期备份并压缩(以discuz论坛为例)_MySQL

WBOY
WBOYOriginal
2016-06-01 13:47:271222browse

bitsCN.com

工作环境 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任务计划请自行搜索学习,这里恕不赘述。


 

 

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn