博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
监控软件cacti添加主机
阅读量:6237 次
发布时间:2019-06-22

本文共 1649 字,大约阅读时间需要 5 分钟。

1.在被监控主机安装snmp服务

[root@db01 ~]# yum install net-snmp* -y 

[root@db01 ~]# vim /etc/snmp/snmpd.conf 

access notConfigGroup "" any noauth exact all none none   #取消注释(systemview修改为all)

view all    included  .1   80   #取消注释

view mib2   included  .iso.org.dod.internet.mgmt.mib-2 fc  #取消注释

com2sec notConfigUser  cacti服务端IP  public      #添加一行

[root@db01 ~]# vim /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m udp -p udp --dport 161 -s cacti服务器地址 -j ACCEPT

[root@db01 ~]# /etc/init.d/snmpd restart

Stopping snmpd:            [FAILED]

Starting snmpd:        [  OK  ]

[root@db01 ~]# /etc/init.d/iptables restart

iptables: Setting chains to policy ACCEPT: filter   [  OK  ]

iptables: Flushing firewall rules:      [  OK  ]

iptables: Unloading modules:       [  OK  ]

iptables: Applying firewall rules:     [  OK  ]

[root@db01 ~]# 

2.在cacti服务器主机添加客户机

[root@db02 ~]# vim /etc/snmp/snmpd.conf 

access  notConfigGroup "" any   noauth  exact  all   none none

view all    included  .1    80

view mib2   included  .iso.org.dod.internet.mgmt.mib-2 fc

com2sec notConfigUser   all  public

proc mountd

proc ntalkd 4

proc sendmail 10 1

disk / 10000

load 12 14 14

[root@db02 thold]# /etc/init.d/snmpd restart

Stopping snmpd:       [  OK  ]

Starting snmpd:      [  OK  ]

[root@db02 thold]# 

[root@db02 rra]# snmpwalk -c public -v 2c 客户机IP地址 if    #输出网卡信息

IF-MIB::ifIndex.1 = INTEGER: 1

IF-MIB::ifIndex.2 = INTEGER: 2

IF-MIB::ifIndex.3 = INTEGER: 3

IF-MIB::ifDescr.1 = STRING: lo

IF-MIB::ifDescr.2 = STRING: eth0

IF-MIB::ifDescr.3 = STRING: eth1

IF-MIB::ifType.1 = INTEGER: softwareLoopback(24)

3.在cacti界面添加客户主机(被控端)

4.在cacti服务端强制生成图形

[root@db02 rra]# /usr/bin/php /var/www/html/cacti/poller.php --force

[root@db02 rra]# chown  apache:apache /var/www/html/cacti/rra/*

等会就出图了

转载地址:http://fowia.baihongyu.com/

你可能感兴趣的文章
非监督学习算法:异常检测
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>
Ubuntu 10.04安装水晶(Mercury)无线网卡驱动
查看>>
我的友情链接
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>
开源SIP服务器加密软件NethidPro升级
查看>>
Apache Pulsar中的地域复制,第1篇:概念和功能
查看>>
python pip install 出现 OSError: [Errno 1] Operation not permitted
查看>>
从源码分析scrollTo、scrollBy、Scroller方法的区别和作用
查看>>
ObjectOutputStream和ObjectInputStream
查看>>
南京大学周志华教授当选欧洲科学院外籍院士
查看>>