zhendeaini123 发表于 2019-1-10 11:59:27

Linux下使用Cacti监控流量状况

  Cacti
   官方站点:http://www.cacti.net
   Cacti 在英文中的意思是仙人掌的意思,Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具,使用PHP开发,它是由一些PHP页面组成软件,主要针对企业的大量网络设备、服务器主机提供性能监测服务,可提供对CPU负载、内存占用、运行进程数、磁盘空间、网卡流量等各种数据信息的监测,cacti注重的是状态监控,报警和服务恢复功能比较差。
  

  开始配置:
  # yum -y install net-snmp
  # vim /etc/snmp/snmpd.conf
  62 accessnotConfigGroup ""      any       noauth    exactall none none
  41 com2sec notConfigUser192.168.254.178       publicupl(验证密码)
  85 view all    included.1                               80
  

  # service snmpd start
  # chkconfig snmpd on
  # netstat -unlp |grep snmp
  udp      0      0 0.0.0.0:161               0.0.0.0:*                               17607/snmpd
  # tar xf cacti-0.8.8a.tar.gz-C /var/www/html/
  # cd /var/www/html/
  # mv cacti-0.8.8a/ cacti
  # useradd cactiuser -s /sbin/nologin
  # cd cacti/
  # chown cactiuser.cactiuser rra log -R
  # yum -y install rrdtool
  # mysql
  mysql> create database cactidb default charset utf8;
  Query OK, 1 row affected (0.00 sec)
  mysql>grant all on cactidb.* to dbuser@'localhost' identified by '123';
  Query OK, 0 rows affected (0.04 sec)
  mysql> exit
  

  导入数据库模板:
  # mysql -udbuser -p123 cactidb < /var/www/html/cacti/cacti.sql
  

  修改cacti的配置文件:
  # vim /var/www/html/cacti/include/config.php
  $database_type = &quot;mysql&quot;;
  $database_default = &quot;cactidb&quot;;
  $database_hostname = &quot;localhost&quot;;
  $database_username = &quot;dbuser&quot;;
  $database_password = &quot;123&quot;;
  $database_port = &quot;3306&quot;;
  

  使用浏览器访问cacti,并作相关的配置:
  # firefox http://192.168.245.178/cacti   --用户名和密码默认都是admin,然后提示你修改密码。
http://blog.运维网.com/attachment/201308/175025299.png
  设置每5分钟采集一次数据:
  # crontab -u cactiuser -e
  */5 * * * * /usr/bin/php /var/www/html/cacti/poller.php &> /dev/null
  # service crond restart
  

  定义监控哪些设备:
  控制面版-->建立设备-->定义设备-->为设备生成图像-->在图像树中添加新设备
  console--->create devices--->add(左上角)---->define devices----->Create Graphs for this Host----->create
  在被监控客户机上要安装net-snmp,41行那里要填写监控端的IP地址。
  # yum -y install net-snmp
  # vim /etc/snmp/snmpd.conf
  62 accessnotConfigGroup &quot;&quot;      any       noauth    exactall none none
  41 com2sec notConfigUser192.168.254.178       public
  85 view all    included.1                               80
  

  # service snmpd start
  

  

http://blog.运维网.com/attachment/201308/175843888.png
http://blog.运维网.com/attachment/201308/175845711.png
http://blog.运维网.com/attachment/201308/175849415.png
http://blog.运维网.com/attachment/201308/175851846.png
  

http://blog.运维网.com/attachment/201308/180441372.png
http://blog.运维网.com/attachment/201308/180447637.png
  简单的cacti就是这样搭建,cacti的强大是其支持的插件。有空再继续发表。上面有谁看不懂的可以留言。
  

  




页: [1]
查看完整版本: Linux下使用Cacti监控流量状况