温馨提示:
本文最后更新于
2007-5-17,已超过半年没有更新,若内容或图片失效,请留言反馈。
这几天一直都在研究服务器配置,总结出来的一些经验和,很有实际作用的资料会陆续发布:)
让你的服务器每天早上自动备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件. 分享如下.
1. 环境: windows server 2003 + IIS6.0 + PHP5 + MySQL 5.0.37
2. 假设 PHP 安装目录为 D:\php5 ,MySQL 安装目录为 D:\mysql
3. 在 D:\php5 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:\php5\WinRAR
4. D:\php5 下建立文件 mysql_backup.php:
<?
//数据库备份保存目录,路径要用反斜杠.您需要手动建立它.
$store_folder = 'D:\databse_backup';
//用户名和密码
//该帐号须有操作[所有]的数据库及FILE的权限
//否则有些数据库不能备份.
$db_username = "用户名";
$db_password = "密码";
$time=time();
$nowdir = "$store_folder\\".date("Ymd",$time)."";
if(file_exists("$nowdir.rar")) die("File exists.\r\n");
@mkdir($nowdir);
mysql_connect("localhost","$db_username","$db_password");
$query=mysql_list_dbs();
$command = '';
while($result=mysql_fetch_array($query)){
$command .= dirname(FILE).'\..\mysql\bin\mysqldump --opt '."$result[Database] -u{$db_username} ".($db_password?"-p{$db_password}":"")." > $nowdir\\$result[Database].sql \r\n";
$command .= "echo dumping database
}
$command .= "echo Winrar loading...\r\n";
$command .= dirname(FILE)."\\WinRAR\\WinRAR.exe a -ep1 -r -o+ -m5 -df \"$nowdir.rar\" \"$nowdir\" \r\n";
$command .= "echo OK!\r\n";
$command .= "del mysqldumping_temp.bat\r\n";
$fp = fclose('mysqldumping_temp.bat','w');
fwrite($fp,$command);
fclose($fp);
//删除 5 天前的文件
@unlink("$store_folder\\".date("Ymd",$time-86400*5).".rar");
?>
//数据库备份保存目录,路径要用反斜杠.您需要手动建立它.
$store_folder = 'D:\databse_backup';
//用户名和密码
//该帐号须有操作[所有]的数据库及FILE的权限
//否则有些数据库不能备份.
$db_username = "用户名";
$db_password = "密码";
$time=time();
$nowdir = "$store_folder\\".date("Ymd",$time)."";
if(file_exists("$nowdir.rar")) die("File exists.\r\n");
@mkdir($nowdir);
mysql_connect("localhost","$db_username","$db_password");
$query=mysql_list_dbs();
$command = '';
while($result=mysql_fetch_array($query)){
$command .= dirname(FILE).'\..\mysql\bin\mysqldump --opt '."$result[Database] -u{$db_username} ".($db_password?"-p{$db_password}":"")." > $nowdir\\$result[Database].sql \r\n";
$command .= "echo dumping database
$result[Database]
... \r\n"; }
$command .= "echo Winrar loading...\r\n";
$command .= dirname(FILE)."\\WinRAR\\WinRAR.exe a -ep1 -r -o+ -m5 -df \"$nowdir.rar\" \"$nowdir\" \r\n";
$command .= "echo OK!\r\n";
$command .= "del mysqldumping_temp.bat\r\n";
$fp = fclose('mysqldumping_temp.bat','w');
fwrite($fp,$command);
fclose($fp);
//删除 5 天前的文件
@unlink("$store_folder\\".date("Ymd",$time-86400*5).".rar");
?>
5. D:\php5 下建立文件 mysql_autobackup.bat,内容为:
php.exe mysql_backup.php
if exist mysqldumping_temp.bat call mysqldumping_temp.bat
if exist mysqldumping_temp.bat call mysqldumping_temp.bat
6. 双击该 bat 文件运行,如果能备份了,OK,下一步添加任务计划.
7. 把 D:\php5\mysql_autobackup.bat 添加到任务计划,时间选每天. 根据服务器的监测结果,每天早上 5-8 时为流量低峰期. 由于 5-7 时有些数据库的清理工作,可以把时间定在早上 8 点整.
评论一下?