THIS KNOWLEDGE BASE HAS BEEN ARCHIVED AND IS NO LONGER BEING UPDATED
Please visit library.nagios.com/docs for the latest and most up-to-date documentation.
Home » Categories » Multiple Categories

Nagios XI - Migrate Performance Data

Overview

Historical performance data that is used to generate graphs are stored in Round Robin Database (RRD) files. RRD performance data files are compiled binaries, so for a simple file transfer a user would have to have the architecture match on both machines.

If you want to migrate files from a 32bit to 64bit machine, you'll have to convert the data to XML and import it into RRD's on the new machine. The following steps will allow you to migrate the data:

On the old 32bit server:

cd /usr/local/nagios/share/perfdata/
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
cd /var/lib/mrtg/
for i in `find -name "*.rrd"`; do rrdtool dump $i > $i.xml; done
tar -cvzf mrtgdata.tar.gz *.rrd.xml
for i in `find -name "*.rrd.xml"`; do rm -f $i; done

 

This will create the files:

  • /usr/local/nagios/share/perfdata/perfdata.tar.gz
    • This needs to be transferred to the /usr/local/nagios/share/perfdata/ directory on the new server
  • /var/lib/mrtg/mrtgdata.tar.gz
    • This needs to be transferred to the /var/lib/mrtg/ directory on the new server

 

On the new 64bit server:

cd /usr/local/nagios/share/perfdata/
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

cd /var/lib/mrtg/
for i in `find -name "*.rrd"`; do rm -f $i; done
tar -xvzf mrtgdata.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

 

When this completes the historic performance data will be migrated from the old server.

 

Final Thoughts

For any support related questions please visit the Nagios Support Forums at:

http://support.nagios.com/forum/



Special Offer For Knowledgebase Visitors! Get a huge discount on Nagios Log Server by clicking below.

Get 60% Off Nagios Log Server!

Did you know? Nagios provides complete monitoring of: Windows, Linux, UNIX, Servers, Websites, SNMP, DHCP, DNS, Email, Storage, Files, Apache, IIS, EC2, and more!

3 (1)
Article Rating (1 Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Nagios XI - Importing Config Files From Nagios Core into Nagios XI
Viewed 17963 times since Wed, Jan 27, 2016
How To Download Files From The Nagios Exchange Using WGET
Viewed 15756 times since Tue, Aug 2, 2016
Nagios XI - SNMP Trap Tutorial
Viewed 47947 times since Mon, Mar 9, 2015
Nagios XI - Empty Screen for Wizard, Component, Dashlet
Viewed 9080 times since Wed, Jan 27, 2016
Nagios XI - Installing XI Fails To Install Dependency pymssql
Viewed 9748 times since Mon, Oct 17, 2016
Nagios XI - Downloading A System Profile
Viewed 9569 times since Wed, Jul 19, 2017
Nagios XI - Status Information Cut Off At 256 Characters
Viewed 9252 times since Thu, Feb 25, 2016
Nagios XI - Distributed Monitoring With NRDP
Viewed 8135 times since Thu, Aug 17, 2017
Nagios XI - SQL Error [nagiosxi] : ERROR: syntax error
Viewed 9129 times since Sun, Sep 10, 2017
Nagios XI - Core Configuration Mananger Display Issues
Viewed 5954 times since Tue, Jan 26, 2016