Converting 32bit RRD to 64bit RRD
Converting 32bit RRD to 64bit RRD (moving cacti between architectures)
On the 32 bit machine in /var/www/cacti/rra/ run in SSH:for i in `find -name "*.rrd"`; do rrdtool dump $i > $i.xml; doneTransfer xml files to the other 64 bit machine and the same location.
On the 64 bit machine run in SSH:
for i in `find -name "*.xml"`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done