关于在CentOS下MRTG的正确安装方法
安装方法如下:
- yum install net-snmp net-snmp-utils mrtg
恩,安装好了。
接着生成配置文件:
==========================================
- vim /etc/snmp/snmpd.conf
把第89行前面的注释符号#去掉,变成
- view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
在62行进行修改:将
- access notConfigGroup “” any noauth exact systemview none none
改为
- access notConfigGroup “” any noauth exact mib2 none none
===============================================
- /usr/bin/cfgmaker public@localhost > /etc/mrtg/mrtg.cfg
接着配置:
- vim /etc/mrtg/mrtg.cfg
输入以下:
- HtmlDir: /opt/mrtg
- ImageDir: /opt/mrtg
- LogDir: /var/lib/mrtg
- ThreshDir: /var/lib/mrtg
- Target[rl]: 2:public@localhost
- MaxBytes[rl]: 1250000
- Title[rl]: 流量监测系统
- Xsize[rl]: 600
- Options[rl]: gauge, nopercent, growright
再配置crontab:
crontab -e
输入:
- */5 * * * * env LANG=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg
代表每5分钟收集一次数据显示。
done
以上配置方法在cent os 5.5 64位rhel5.5的64位分别成功。
【编辑推荐】