Monthly Archives: 7 月 2011

[Linux笔记] CentOS配置SNMP[服务器SNMP性能监控]

4 Comments

CentOS配置SNMP[服务器SNMP性能监控]
一、安装SNMP
1.检查SNMP是否安装

rpm -q net-snmp

2.如果未安装,安装SNMP

yum install net-snmp

3.设置开机自动运行SNMP

/sbin/chkconfig snmpd on

二、配置SNMP
编辑snmpd.conf

vi /etc/snmp/snmpd.conf

1.更改团体名(Community)
找到下面这句

# sec.name source community
com2sec notConfigUser  default       public

将团体名(Community)public改为其它任意字段,例:

com2sec notConfigUser  default       meidahua

Continue reading