2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_6.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_7.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_8.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_9.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_10.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot update /var/lib/mrtg/192.168.***.***_11.rrd with '1332520199:0:0' This RRD was created on another architecture
2012-03-23 11:29:59: ERROR: Cannot tune logfile: This RRD was created on another architecture
Nagios XI 5.2.5 | CentOS6.3 x86_64 | Virtual Instance on VMware vSphere 6
cd /var/lib/mrtg
for i in `find -name "*.rrd"`; do rrdtool dump $i > $i.xml; done
tar -cvzf perfdata.tar.gz */*.rrd.xml
for i in `find -name "*.rrd.xml"`; do rm -f $i; done
service nagiosxi stop
service npcd stop
service ndo2db stop
service nagios stop
cd /var/lib/mrtg
for i in `find -name "*.rrd"`; do rm -f $i; done
tar -xvzf perfdata.tar.gz
for i in `find -name "*.rrd.xml"`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
for i in `find -name "*.rrd"`; do chown nagios:nagios $i; done
for i in `find -name "*.rrd.xml"`; do rm -f $i; done
service nagios start
service ndo2db start
service npcd start
service nagioxi start
Thanks to Aurelien for the post containing that information.