<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>枫子博客自动备份</title>
	<atom:link href="http://www.imfeng.com/tag/%e8%87%aa%e5%8a%a8%e5%a4%87%e4%bb%bd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imfeng.com</link>
	<description>很枫的那种 闲人请勿靠近</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:29:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>win2003下每天自动备份mysql数据库</title>
		<link>http://www.imfeng.com/win2003-auto-backup-mysql-database/</link>
		<comments>http://www.imfeng.com/win2003-auto-backup-mysql-database/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:18:25 +0000</pubDate>
		<dc:creator>枫子</dc:creator>
				<category><![CDATA[服务器]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[自动备份]]></category>

		<guid isPermaLink="false">http://www.imfeng.com/?p=109</guid>
		<description><![CDATA[终于让服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件. 分享如下.
1. 环境: windows server 2003 + Apache 2.0 + PHP5 + MySQL 4.0.26 .
2. 假设 PHP 安装目录为 D:/php ,MySQL 安装目录为 D:/mysql.
3. 在 D:/php 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:/php/WinRAR .
4. D:/php 下建立文件 mysql_backup.php:




    /*///////////////////////// 

#FileName: mysql_backup.php 

#Author: faisun 

#Website: http://www.softpure.com 

////////////////////////*/   [...]]]></description>
			<content:encoded><![CDATA[<p>终于让服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件. 分享如下.<span id="more-109"></span></p>
<p>1. 环境: windows server 2003 + Apache 2.0 + PHP5 + MySQL 4.0.26 .</p>
<p>2. 假设 PHP 安装目录为 D:/php ,MySQL 安装目录为 D:/mysql.</p>
<p>3. 在 D:/php 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:/php/WinRAR .</p>
<p>4. D:/php 下建立文件 mysql_backup.php:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400" align="center">
<tbody>
<tr>
<td bgcolor="#e6e6e6">
<pre>    /*///////////////////////// 

#FileName: mysql_backup.php 

#Author: faisun 

#Website: <a href="http://www.softpure.com/"><span style="color: #000000;">http://www.softpure.com</span></a> 

////////////////////////*/    

//保存目录,路径要用反斜杠.您需要手动建立它. 

$store_folder = 'D:databse_backup'; 

//用户名和密码 

//该帐号须有操作[所有]的数据库及FILE的权限 

//否则有些数据库不能备份. 

$db_username = "root"; 

$db_password = ""; 

$time=time(); 

$nowdir = "$store_folder".date("Ymd",$time).""; 

if(file_exists("$nowdir.rar")) die("File exists.n"); 

@mkdir($nowdir); 

mysql_connect("localhost","$db_username","$db_password"); 

$query=mysql_list_dbs(); 

while($result=mysql_fetch_array($query)){ 

system (dirname(__FILE__).'..mysqlbinmysqldump --opt '."$result[Database] -u ".($db_password?"-p":"")." &gt; $nowdir$result[Database].sql"); 

echo "dumping database `$result[Database]`...n"; 

} 

echo "nWinrar loading...n"; 

system( dirname(__FILE__)."<a href="file://WinRAR//WinRAR.exe"><span style="color: #000000;">WinRARWinRAR.exe</span></a> a -ep1 -r -o+ -m5 -df "$nowdir.rar" "$nowdir" " ); 

//删除 5 天前的文件 

@unlink("$store_folder".date("Ymd",$time-86400*5).".rar"); 

echo "nOK!n"; 

&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p><!----></p>
<p>5. D:/php 下建立文件 mysql_backup.bat,内容只有一句:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400" align="center">
<tbody>
<tr>
<td bgcolor="#e6e6e6">
<pre>  php.exe mysql_backup.php</pre>
</td>
</tr>
</tbody>
</table>
<p>6. 双击该 bat 文件运行,如果能备份了,OK,下一步添加任务计划.</p>
<p>7. 把 D:/php/mysql_backup 添加到任务计划,时间选每天. 根据服务器的监测结果,每天早上 5-8 时为流量低峰期. 由于 5-7 时有些数据库的清理工作,我把时间定在了早上 8 点整.</p>
<p><a href="http://database.51cto.com/art/200607/29254.htm" target="_blank">查看本文来源</a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://www.imfeng.com/win2003-auto-backup-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
