Migration of RRD Graphs

Author: stephan  |  Category: Linux, Nagios, Netzwerk

[lang_de]
Ich hatte vor kurzem das Problem das RRD Graphen nicht mehr korrekt geupdatet wurden nach einer Migration.
Im Netz fand ich dann diesen => Guide

Auf der Quelle
for i in `ls *. rrd`; do rrdtool dump $i > $i.xml; done
Dann die Dateien auf das Ziel kopieren und folgendes eingeben
for i in `ls *.xml`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
[/lang_de]
[lang_en]
After a migration I had the problem that the Update of RRD Graphs failed.
The I found this guide in the internet => Guide

Source
for i in `ls *. rrd`; do rrdtool dump $i > $i.xml; done
Then copy the file to the target and do the following.
for i in `ls *.xml`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
[/lang_en]

Kurzhowto: MRTG

Author: stephan  |  Category: Linux, Netzwerk

Da ich mir jetzt zum zweiten Mal die Konfiguration eines MRTG aus den Fingern saugen musste , schreibe ich mir bis zum nächsten Mal auf 😉

MRTG und snmpd müssen installiert sein
Die snmpd.conf ( eigentlich selbat weklärend
cat ../snmp/snmpd.conf
#optional
syslocation Serverraum
syscontact Admin (admin@localhost)
# Der wichtige Parameter
rocommunity public 127.0.0.1

Mit diesem Befehl wird die Konfiguration für den MRTG geschrieben und die Dateien für die Interfaces initial angelegt.
cfgmaker public@127.0.0.1 --global "Workdir: /www/mrtg" --output /etc/mrtg.cfg

Mit folgendem Befehl kann noch eine Indexdatei erstellt werden.
indexmaker --output=index.html /etc/mrtg.cfg

Das als Cronjob und das MRTG lebt
mrtg /etc/mrtg.cfg