Cacti和Nagios整合

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

        Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具。用来监控网络流量、cpu使用率、内存使用率、硬盘使用率等。可以直观的监控各种数据流量,可以安装扩展插件,同时支持短信邮件告警等功能。

        Nagios是一个监视系统运行状态和网络信息的监视系统。Nagios能监视所指定的本地或远程主机以及服务,提供异常通知功能,同时还可以安装各种模块插件,自定义监控脚本等。

        两者区别:Cacti偏重于网络流量,系统负载方面的监控。而 Nagios偏重于系统服务方面的监控,你可以在被监控的机器上写自己的程序(shell,c 或 perl都可以) 。Nagios则通过这些脚本来对服务进行监控。Nagios可以和短信发送机配合用来监控规模较大的网站。


  • 安装扩展yum源

1
2
3
4
5
6
7
[root@www ~] # rpm -ivh http://mirrors.yun-idc.com/epel/6/i386/epel-release-6-8.noarch.rpm
Retrieving http: //mirrors .yun-idc.com /epel/6/i386/epel-release-6-8 .noarch.rpm
warning:  /var/tmp/rpm-tmp .1jSHmn: Header V3 RSA /SHA256  Signature, key ID 0608b895: NOKEY
Preparing...                 ########################################### [100%]
    1:epel-release            ########################################### [100%]
[root@www ~] # ls /etc/yum.repos.d/epel*
/etc/yum .repos.d /epel .repo   /etc/yum .repos.d /epel-testing .repo

##########CACTI#########


一、安装LAMP环境

1
[root@www ~] # yum -y install httpd php php-mysql mysql mysql-server mysql-devel php-gd libjpeg libjpeg-devel libpng libpng-devel


二、安装net-snmp、php-snmp、net-snmp-utils

1
[root@www ~] # yum -y install net-snmp net-snmp-utils net-snmp-libs php-snmp


三、安装rrdtool图形整合工具

1
2
3
4
5
6
7
8
9
10
11
[root@www ~] # yum -y install rrdtool
[root@www ~] # rrdtool 
RRDtool 1.3.8  Copyright 1997-2009 by Tobias Oetiker <tobi@oetiker.ch>
                Compiled Apr  3 2014 13:07:03
Usage: rrdtool [options]  command  command_options
Valid commands: create, update, updatev, graph, graphv,  dump, restore,
last, lastupdate, first, info, fetch, tune,
resize, xport
RRDtool is distributed under the Terms of the GNU General
Public License Version 2. (www.gnu.org /copyleft/gpl .html)
For  more  information  read  the RRD manpages

四、安装cacti主程序

  • 下载cacti-0.8.8f.tar.gz

[root@www ~]# wget http://www.cacti.net/downloads/cacti-0.8.8f.tar.gz

  • 安装cacti,解压放到网站目录下

[root@www ~]# tar zxf cacti-0.8.8f.tar.gz 

[root@www ~]# mv cacti-0.8.8f /var/www/html/cacti/

[root@www ~]# chown -R root. /var/www/html/cacti/

  • 初始化数据库

[root@www ~]# /etc/init.d/mysqld start

1
2
3
4
5
6
7
[root@www ~] # mysql_secure_installation 
Enter current password  for  root (enter  for  none):
Set root password? [Y /n ] y
Remove anonymous  users ? [Y /n ] y
Disallow root login remotely? [Y /n ] y
Remove  test  database and access to it? [Y /n ] y
Reload privilege tables now? [Y /n ] y
  • 创建cacti数据库

1
[root@www ~] # mysql -uroot -p -e "create database cacti"
  • 授权cacti数据库用户

1
2
[root@www ~] # mysql -uroot -p -e "grant all on cacti.* to 'cacti'@'localhost' identified by 'cactipass';"
[root@www ~] # mysql -uroot -p -e "flush privileges;"
  • 导入数据库文件

1
[root@www ~] # mysql -uroot -p cacti < /var/www/html/cacti/cacti.sql
  • 修改cacti的配置文件config.php

1
2
3
4
5
6
7
8
[root@www ~] # vim /var/www/html/cacti/include/config.php
$database_type =  "mysql" ;
$database_default =  "cacti" ;
$database_hostname =  "localhost" ;
$database_username =  "cacti" ;
$database_password =  "cactipass" ;
$database_port =  "3306" ;
$database_ssl =  false ;
  • 调整系统时区及时间

1
2
3
[root@www ~] # yum -y install ntp
[root@www ~] # ntpdate ntpdate time.nist.gov  ##同步时间
[root@www ~] # cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime  ##替换系统时区
  • 配置php.ini文件的时区为Asia/Shanghai

1
2
[root@www ~] # vim /etc/php.ini 
date .timezone =  'Asia/Shanghai'
  • 添加抓图计划任务

1
2
3
[root@www ~] # /usr/bin/php /var/www/html/cacti/poller.php
[root@www ~] # crontab -e
* /5  * * * *   /usr/bin/php  /var/www/html/cacti/poller .php


五、Web界面安装和配置cacti

  • http://192.168.1.21/cacti

wKiom1aUq0TRxWOkAAE56zohYII386.jpg

  • New install

wKiom1aUq36imdirAACUNWmLo9o225.jpg

  • Finish

wKioL1aUrCTjCkGrAAFZ3fjQkTk780.jpg

  • 转到登录页面,默认登录名和密码都是admin,输入会提示修改密码,Save后显示cacti主页面

wKioL1aUrS7xPPI9AAC6TvcNpsA864.jpg

  • 点击graphs查看生成的图形数据

wKioL1aUrx6BxJQYAAEpKw1V8uo713.jpg



本文转自 HMLinux 51CTO博客,原文链接:http://blog.51cto.com/7424593/1734183

相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
JavaScript 关系型数据库 MySQL
|
关系型数据库 PHP Ubuntu
|
监控 Windows
|
关系型数据库 PHP Ubuntu
|
JSON 数据安全/隐私保护 数据格式
|
Web App开发 关系型数据库 MySQL