<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Automate MySQL Database Backups with Shell Script and Cron	</title>
	<atom:link href="https://www.tecmint.com/bash-script-for-mysql-backup/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/bash-script-for-mysql-backup/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 30 Apr 2025 05:00:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2302040</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 30 Apr 2025 04:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4010#comment-2302040</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301619&quot;&gt;TJ Bruce&lt;/a&gt;.

@TJ,

Absolutely agree - backups without verified restores are just false confidence. Testing the restore process regularly is critical to ensure the backup is actually usable when it matters most. And yes, setting up email alerts from cron jobs is a simple but powerful way to catch silent failures early. 

Thanks for the solid reminder — I’ll update the article to reflect these important points.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301619">TJ Bruce</a>.</p>
<p>@TJ,</p>
<p>Absolutely agree &#8211; backups without verified restores are just false confidence. Testing the restore process regularly is critical to ensure the backup is actually usable when it matters most. And yes, setting up email alerts from cron jobs is a simple but powerful way to catch silent failures early. </p>
<p>Thanks for the solid reminder — I’ll update the article to reflect these important points.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2302039</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 30 Apr 2025 04:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4010#comment-2302039</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301646&quot;&gt;Nole&lt;/a&gt;.

@Nole,

Thanks for the suggestion! 

I&#039;ve updated the article to include the &lt;code&gt;rsync&lt;/code&gt; mirror option you mentioned, which is a great way to keep remote backups in sync.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301646">Nole</a>.</p>
<p>@Nole,</p>
<p>Thanks for the suggestion! </p>
<p>I&#8217;ve updated the article to include the <code>rsync</code> mirror option you mentioned, which is a great way to keep remote backups in sync.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nole		</title>
		<link>https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301646</link>

		<dc:creator><![CDATA[Nole]]></dc:creator>
		<pubDate>Tue, 29 Apr 2025 01:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4010#comment-2301646</guid>

					<description><![CDATA[You should create a mirror as well with something like &lt;strong&gt;rsync&lt;/strong&gt;:
&lt;pre&gt;
rsync -avz \
      -e &quot;ssh -i $SSH_KEY -o StrictHostKeyChecking=no&quot; \
      --delete-after \
      &quot;$BACKUP_DIR/&quot; \
      &quot;$REMOTE_USER@$REMOTE_HOST:$REMOTE_DIR/&quot;
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>You should create a mirror as well with something like <strong>rsync</strong>:</p>
<pre>
rsync -avz \
      -e "ssh -i $SSH_KEY -o StrictHostKeyChecking=no" \
      --delete-after \
      "$BACKUP_DIR/" \
      "$REMOTE_USER@$REMOTE_HOST:$REMOTE_DIR/"
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: TJ Bruce		</title>
		<link>https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-2301619</link>

		<dc:creator><![CDATA[TJ Bruce]]></dc:creator>
		<pubDate>Mon, 28 Apr 2025 23:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4010#comment-2301619</guid>

					<description><![CDATA[Backups are good, and this script looks solid (though I haven’t tested it myself yet). But backups are only part of the solution. Backups can fail for various reasons. It’s the restore process that must be tested repeatedly to ensure the most recent backup is valid and that you can actually recover the data. Otherwise, you’re just burning compute cycles and wasting your time.

Also, if you&#039;re running it through cron, make sure the results are emailed to you (or your team). That way, you&#039;ll know it’s working or be alerted to any failures so you can investigate and fix them.]]></description>
			<content:encoded><![CDATA[<p>Backups are good, and this script looks solid (though I haven’t tested it myself yet). But backups are only part of the solution. Backups can fail for various reasons. It’s the restore process that must be tested repeatedly to ensure the most recent backup is valid and that you can actually recover the data. Otherwise, you’re just burning compute cycles and wasting your time.</p>
<p>Also, if you&#8217;re running it through cron, make sure the results are emailed to you (or your team). That way, you&#8217;ll know it’s working or be alerted to any failures so you can investigate and fix them.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sathish		</title>
		<link>https://www.tecmint.com/bash-script-for-mysql-backup/comment-page-1/#comment-84949</link>

		<dc:creator><![CDATA[Sathish]]></dc:creator>
		<pubDate>Fri, 13 Dec 2024 13:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4010#comment-84949</guid>

					<description><![CDATA[I recently switched to automating my MySQL backups using a Bash script with Cron jobs, and it’s been a game-changer! It’s an easy-to-follow, reliable method to ensure my databases are backed up regularly without any manual effort. Highly recommend this approach for anyone looking for a simple, automated solution.]]></description>
			<content:encoded><![CDATA[<p>I recently switched to automating my MySQL backups using a Bash script with Cron jobs, and it’s been a game-changer! It’s an easy-to-follow, reliable method to ensure my databases are backed up regularly without any manual effort. Highly recommend this approach for anyone looking for a simple, automated solution.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
