<?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 for Zabbix Zone</title>
	<atom:link href="http://zabbixzone.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://zabbixzone.com</link>
	<description>Free Knowledge for All</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:50:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Backuping only the Zabbix Configuration by Ricardo Santos</title>
		<link>http://zabbixzone.com/zabbix/backuping-only-the-zabbix-configuration/#comment-255</link>
		<dc:creator>Ricardo Santos</dc:creator>
		<pubDate>Mon, 06 Feb 2012 15:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=126#comment-255</guid>
		<description>Hi Araceli,

No, this script is only for MySQL.

But the simple way to do it is backup all schemas and the tables defined in &quot;CONFTABLES&quot; variable.</description>
		<content:encoded><![CDATA[<p>Hi Araceli,</p>
<p>No, this script is only for MySQL.</p>
<p>But the simple way to do it is backup all schemas and the tables defined in &#8220;CONFTABLES&#8221; variable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Backuping only the Zabbix Configuration by Jens Berthold</title>
		<link>http://zabbixzone.com/zabbix/backuping-only-the-zabbix-configuration/#comment-254</link>
		<dc:creator>Jens Berthold</dc:creator>
		<pubDate>Mon, 06 Feb 2012 15:30:45 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=126#comment-254</guid>
		<description>Great script!

I think changing your commands to something like
MYSQLDUMP=&quot;`which mysqldump`&quot;
doesn&#039;t make much sense, as the &quot;which&quot; command just searches the $PATH - what is also done when you directly call the command without any path.

So you can either just write
MYSQLDUMP=&quot;mysqldump&quot; or completely omit the variable and directly use the command (without path).</description>
		<content:encoded><![CDATA[<p>Great script!</p>
<p>I think changing your commands to something like<br />
MYSQLDUMP=&#8221;`which mysqldump`&#8221;<br />
doesn&#8217;t make much sense, as the &#8220;which&#8221; command just searches the $PATH &#8211; what is also done when you directly call the command without any path.</p>
<p>So you can either just write<br />
MYSQLDUMP=&#8221;mysqldump&#8221; or completely omit the variable and directly use the command (without path).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Backuping only the Zabbix Configuration by Araceli Calabresi</title>
		<link>http://zabbixzone.com/zabbix/backuping-only-the-zabbix-configuration/#comment-253</link>
		<dc:creator>Araceli Calabresi</dc:creator>
		<pubDate>Wed, 01 Feb 2012 14:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=126#comment-253</guid>
		<description>Hi Ricardo!

This is a nice script. Do you know if someone tried to use it with Oracle11GR2?

Thanks for sharing.
Araceli</description>
		<content:encoded><![CDATA[<p>Hi Ricardo!</p>
<p>This is a nice script. Do you know if someone tried to use it with Oracle11GR2?</p>
<p>Thanks for sharing.<br />
Araceli</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Queue Explained by Ali Islam</title>
		<link>http://zabbixzone.com/zabbix/queue-explained/#comment-252</link>
		<dc:creator>Ali Islam</dc:creator>
		<pubDate>Thu, 26 Jan 2012 11:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=54#comment-252</guid>
		<description>Very Great Site!
How to I get the Queue NOT to build up??
Its so irritating...
Please advise the cures and medicine for this decease ;-)</description>
		<content:encoded><![CDATA[<p>Very Great Site!<br />
How to I get the Queue NOT to build up??<br />
Its so irritating&#8230;<br />
Please advise the cures and medicine for this decease <img src='http://zabbixzone.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL performance tips for Zabbix by GtzGtz</title>
		<link>http://zabbixzone.com/zabbix/mysql-performance-tips-for-zabbix/#comment-251</link>
		<dc:creator>GtzGtz</dc:creator>
		<pubDate>Wed, 25 Jan 2012 22:08:44 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=121#comment-251</guid>
		<description>Thank you very much for sharing this information and your knowledge. I took your my.cnf as base for a new Zabbix installation.
Thanks.</description>
		<content:encoded><![CDATA[<p>Thank you very much for sharing this information and your knowledge. I took your my.cnf as base for a new Zabbix installation.<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Backuping only the Zabbix Configuration by fjrial</title>
		<link>http://zabbixzone.com/zabbix/backuping-only-the-zabbix-configuration/#comment-250</link>
		<dc:creator>fjrial</dc:creator>
		<pubDate>Wed, 25 Jan 2012 08:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=126#comment-250</guid>
		<description>This approach has a problem:

mysqldump does a read lock on tables, so dumping large tables is neither impossible without stoping zabbix services..

I configured my mysql server with master-server replication, so this way, I can stop anyway the slave, dump the entire db, and start again the slave without stoping zabbix services.

Anyways, thanks for sharing</description>
		<content:encoded><![CDATA[<p>This approach has a problem:</p>
<p>mysqldump does a read lock on tables, so dumping large tables is neither impossible without stoping zabbix services..</p>
<p>I configured my mysql server with master-server replication, so this way, I can stop anyway the slave, dump the entire db, and start again the slave without stoping zabbix services.</p>
<p>Anyways, thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Partitioning Tables by Luke</title>
		<link>http://zabbixzone.com/zabbix/partitioning-tables/#comment-249</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Thu, 05 Jan 2012 18:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=101#comment-249</guid>
		<description>Bah! This got me today, forgot to make my 2012 monthly partitions. Zabbix didn&#039;t like that.</description>
		<content:encoded><![CDATA[<p>Bah! This got me today, forgot to make my 2012 monthly partitions. Zabbix didn&#8217;t like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Backuping only the Zabbix Configuration by Vinício Zanchettin</title>
		<link>http://zabbixzone.com/zabbix/backuping-only-the-zabbix-configuration/#comment-248</link>
		<dc:creator>Vinício Zanchettin</dc:creator>
		<pubDate>Tue, 03 Jan 2012 16:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=126#comment-248</guid>
		<description>I used this script and it works very well.
Thanks!</description>
		<content:encoded><![CDATA[<p>I used this script and it works very well.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Queue Explained by Bruno</title>
		<link>http://zabbixzone.com/zabbix/queue-explained/#comment-247</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 29 Dec 2011 18:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=54#comment-247</guid>
		<description>Great site man =)

I&#039;ve started with Zabbix last month and I really liked it.

I&#039;m also from Brazil hehe

o/</description>
		<content:encoded><![CDATA[<p>Great site man =)</p>
<p>I&#8217;ve started with Zabbix last month and I really liked it.</p>
<p>I&#8217;m also from Brazil hehe</p>
<p>o/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Queue Explained by ervin</title>
		<link>http://zabbixzone.com/zabbix/queue-explained/#comment-246</link>
		<dc:creator>ervin</dc:creator>
		<pubDate>Wed, 07 Dec 2011 12:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://zabbixzone.com/?p=54#comment-246</guid>
		<description>is there any configurations that may cause this problems?such as zabbix trappers or probes in zabbix config file?</description>
		<content:encoded><![CDATA[<p>is there any configurations that may cause this problems?such as zabbix trappers or probes in zabbix config file?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: zabbixzone.com @ 2012-02-06 21:30:19 -->
