<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Backing Up MySQL</title>
	<atom:link href="http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/</link>
	<description></description>
	<pubDate>Sat, 05 Jul 2008 19:55:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Joe Annoyed</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-544191</link>
		<dc:creator>Joe Annoyed</dc:creator>
		<pubDate>Sat, 08 Dec 2007 22:45:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-544191</guid>
		<description>Could you please put the line breaks into the script?  It would make it much more readable</description>
		<content:encoded><![CDATA[<p>Could you please put the line breaks into the script?  It would make it much more readable</p>]]></content:encoded>
	</item>
	<item>
		<title>By: bangis</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-58896</link>
		<dc:creator>bangis</dc:creator>
		<pubDate>Sat, 23 Sep 2006 17:04:17 +0000</pubDate>
		<guid isPermaLink="false">#comment-58896</guid>
		<description>Guys,

I found this software. http://www.cpsitesaver.com

It backs up MYSQL databases. 

Maybe that will help.</description>
		<content:encoded><![CDATA[<p>Guys,</p>
<p>I found this software. <a href="http://www.cpsitesaver.com" rel="nofollow">http://www.cpsitesaver.com</a></p>
<p>It backs up MYSQL databases. </p>
<p>Maybe that will help.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: KaRa</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-16831</link>
		<dc:creator>KaRa</dc:creator>
		<pubDate>Fri, 31 Mar 2006 09:42:08 +0000</pubDate>
		<guid isPermaLink="false">#comment-16831</guid>
		<description>Do we really need -pogt options when using rsync? I see no difference without them.</description>
		<content:encoded><![CDATA[<p>Do we really need -pogt options when using rsync? I see no difference without them.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: slamdunkinpool</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-10537</link>
		<dc:creator>slamdunkinpool</dc:creator>
		<pubDate>Sun, 06 Nov 2005 23:38:24 +0000</pubDate>
		<guid isPermaLink="false">#comment-10537</guid>
		<description>Ian, your soluntion is fine but you can use 'scp' or 'rsync' for better results instead of 'sftp'.</description>
		<content:encoded><![CDATA[<p>Ian, your soluntion is fine but you can use &#8217;scp&#8217; or &#8216;rsync&#8217; for better results instead of &#8217;sftp&#8217;.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-10434</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 02 Nov 2005 18:59:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-10434</guid>
		<description>A better way to do this so usernames and passwords aren't in files, via ssh:
http://secpriv.com/viewarticle.php?id=49</description>
		<content:encoded><![CDATA[<p>A better way to do this so usernames and passwords aren&#8217;t in files, via ssh:<br />
<a href="http://secpriv.com/viewarticle.php?id=49" rel="nofollow">http://secpriv.com/viewarticle.php?id=49</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Whitinger</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-4581</link>
		<dc:creator>Dave Whitinger</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-4581</guid>
		<description>&lt;p&gt;Why not just use rsync and copy over the /var/lib/mysql/* files?  I used the mysqldump method until my database grew over 1G in size, at which point it wasn't feasible anymore.  Check out rsync over ssh for backups - works great!&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Why not just use rsync and copy over the /var/lib/mysql/* files?  I used the mysqldump method until my database grew over 1G in size, at which point it wasn&#8217;t feasible anymore.  Check out rsync over ssh for backups - works great!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: bwarrene</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-4582</link>
		<dc:creator>bwarrene</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-4582</guid>
		<description>&lt;p&gt;Good point on large tables.  One note to add - if you are using a MySQL version prior to 4.1, mysqldump by default passes all data to memory when preparing the backup.  If you use --opt it will prevent this - and perhaps allow more efficient backup of large databases without crunching your server's ram.&lt;/p&gt;

&lt;p&gt;If you really want to jam your ram and have version 4.1 or better - you need to use --skip-opt as it is on by default now to improve large database backups.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Good point on large tables.  One note to add - if you are using a MySQL version prior to 4.1, mysqldump by default passes all data to memory when preparing the backup.  If you use &#8211;opt it will prevent this - and perhaps allow more efficient backup of large databases without crunching your server&#8217;s ram.</p>
<p>If you really want to jam your ram and have version 4.1 or better - you need to use &#8211;skip-opt as it is on by default now to improve large database backups.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: PJ Doland</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-4583</link>
		<dc:creator>PJ Doland</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-4583</guid>
		<description>&lt;p&gt;Rsync-ing /var/lib/mysql/* would work provided MySQL wasn't running at the time.&lt;/p&gt;

&lt;p&gt;You need the tables locked when you copy them.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Rsync-ing /var/lib/mysql/* would work provided MySQL wasn&#8217;t running at the time.</p>
<p>You need the tables locked when you copy them.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: PJ Doland</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-4584</link>
		<dc:creator>PJ Doland</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-4584</guid>
		<description>&lt;p&gt;You don't want to just use rsync because you need to lock the tables.&lt;/p&gt;

&lt;p&gt;If you're stopping mysql every time you backup that shouldn't be a problem though.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>You don&#8217;t want to just use rsync because you need to lock the tables.</p>
<p>If you&#8217;re stopping mysql every time you backup that shouldn&#8217;t be a problem though.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Thomas</title>
		<link>http://www.sitepoint.com/blogs/2004/04/30/backing-up-mysql/#comment-4585</link>
		<dc:creator>Richard Thomas</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-4585</guid>
		<description>&lt;p&gt;You can not reliably rsync a live database for so many reasons.&lt;br /&gt;
1. If the database crashes your copy could be incomplete/corrupt.&lt;br /&gt;
2. Your backup doesn't take into account database or query failures. If you for example delete the wrong table your "backup" is useless.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>You can not reliably rsync a live database for so many reasons.<br />
1. If the database crashes your copy could be incomplete/corrupt.<br />
2. Your backup doesn&#8217;t take into account database or query failures. If you for example delete the wrong table your &#8220;backup&#8221; is useless.</p>]]></content:encoded>
	</item>
</channel>
</rss>
