<?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>Agence de Développement Informatique du Nord &#187; rrdtool</title>
	<atom:link href="http://blog.adin.pro/tag/rrdtool/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adin.pro</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 26 Dec 2019 08:54:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>ERROR: This RRD was created on another architecture</title>
		<link>http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/</link>
		<comments>http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 14:42:01 +0000</pubDate>
		<dc:creator><![CDATA[blogadmin]]></dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[rrdtool]]></category>

		<guid isPermaLink="false">http://blog.adin.pro/?p=113</guid>
		<description><![CDATA[<p>You are migrating cacti from a 32bits machine to a 64bits machine and you get this error message : &#8220;ERROR: This RRD was created on another architecture&#8221; ? To fix it, you need to convert on your 32bits machine the &#8230; <a href="http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/">Continue reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/">ERROR: This RRD was created on another architecture</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>You are migrating cacti from a 32bits machine to a 64bits machine and you get this error message : &#8220;ERROR: This RRD was created on another architecture&#8221; ?</p>
<p>To fix it, you need to convert on your 32bits machine the .rrd file to xml files.</p>
<pre class="brush: bash; title: ; notranslate">
    for i in `ls *.rrd`; do rrdtool dump $i &gt; $i.xml; done
</pre>
<p>And on your 64bits machine, transform your XML files to rrd files :</p>
<pre class="brush: bash; title: ; notranslate">
for i in `ls *.xml`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
</pre>
<p>The post <a rel="nofollow" href="http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/">ERROR: This RRD was created on another architecture</a> appeared first on <a rel="nofollow" href="http://blog.adin.pro">Agence de Développement Informatique du Nord</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adin.pro/2013-02-24/error-this-rrd-was-created-on-another-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
