全部博文(137)
分类: LINUX
2010-02-25 12:12:21
[root@jacktest jack]# tar zxvf net-snmp-5.2.1.tar.tar [root@jacktest jack]# cd net-snmp-5.2.1 [root@jacktest net-snmp-5.2.1]# ./configure [root@jacktest jack]# make [root@jacktest jack]# make install
打开默认的/etc/snmp/snmp.conf文件,更改如下配置:
代码: # sec.name source community com2sec notConfigUser default public 将"comunity"字段改为你要设置的密码.比如"public". 将“default”改为你想哪台机器可以看到你的snmp信息,如192.168.1.210。
#### # Finally, grant the group read-only access to the systemview view. # group context sec.model sec.level prefix read write notif access notConfigGroup "" any noauth exact all none none 将"read"字段改为all. 代码: #access notConfigGroup "" any noauth exact systemview none none
## incl/excl subtree mask #view all included .1 80 将该行前面的"#"去掉.
保存关闭.
最后运行netstat -ln查看161端口是否打开了.
使用ntsysv,让snmp服务,每次开机自动运行。
如果没有安装snmp服务,请在RH的安装光盘上找到net-snmp.rpm,再安装。
在cacti 监控管理工作站上
1. 首先检查一下rra/下面,有没有数据
2. snmpwalk -v 2c -c public ServerIP if 用来测试被控对象(serverIP)是否开启了SNMP服务
3. snmpwalk -v 2c ServerIP -c public .1.3.6.1.4.1.2021.10.1.3 查看被控端是否有CPU负载的数据返回
4. /www/php/bin/php /www/htdocs/cacti/poller.php 用来测试PHP是否可以采集到数据。