CentOS 5.5下整合Cacti+Monitor+Told+ntop部署

CentOS5.5 IP:192.168.100.153 cacti

Centos5.5 IP:192.168.100.151 dns

需求:

部署cacti+monitor+told+ntop能正常监控部署

实施:

一、前期部署

1、 首先保证LAMP能正常的运行,我们使用源码来安装相关的安装具体来看我们LAMP部署。当然也可以使用RPM或者yum安装~

确保LAMP安装正常或者yum安装yum install -y php php-mysql php-snmp mysql mysql-server net-snmp net-snmp-libs net-snmp-utils php-pdo perl-DBD-MySQL红色的不管是我们源码安装LAMP是RPM或者yum都需要安装的;

2、 保证DNS能解析我们的cacti服务器。添加A记录;

二、部署cacti;

1、 安装snmp;我们使用yum安装,相对依赖的包比较多我们直接yum来安装即可;客户端也需要安装net-snmp net-snmp-libs

Yum –y install net-snmp net-snmp-libs net-snmp-utils php-snmp

2、 安装完成之后我们编辑snmp配置文件,并重启服务。

Vim /etc/snmp/snmp.conf 修改三行

com2sec notConfigUser 192.168.100.153 public 修改成本机的IP地址

access notConfigGroup "" any noauth exact all none none 修改成all

view all included .1 80 去掉前面的“#”号

service snmpd restart

3、 编译安装rrdtool文件

解压 tar zxf rrdtool-1.2.30.tar.gz

进入 rrdtool

./configure 后面不需要跟安装目录默认安装即可

make && make install 编辑完成

如果编译出错

[root@localhost cacti+ntop+awstats]# tar zxvf cgilib-0.5.tar.gz

[root@localhost cgilib-0.5]# cp libcgi.a /usr/local/lib

[root@localhost cgilib-0.5]# cp cgi.h /usr/include/

[root@localhost cacti+ntop+awstats]# yum -y install libart_lgpl-devel ariro-devel(如果不行使用)

4、 编译cacti文件

解压 tar zxf cacti-0.8.7b.tar.gz

移动解压的cacti目录文件到我们的httpd目录;cacti目录是创建的,因cacti是php程序开发的所以直接拿过就可以使用的。移动即可

mv cacti-0.8.7b /usr/local/apache/htdocs/cacti

5、 创建mysql文件库;

[root@localhost cacti]# mysql –p 进入mysql数据库;

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.0.56-log Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> create database cacti; 创建数据库cacti

Query OK, 1 row affected (0.09 sec)

mysql> grant all privileges on cacti.* to cacti@localhost identified by 'cacti' with grant option; 创建库cacti并且设置权限;

Query OK, 0 rows affected (0.08 sec)

mysql> grant all privileges on cacti.* to cacti@192.168.100.153 identified by 'cacti' with grant option;

Query OK, 0 rows affected (0.00 sec)

mysql> use cacti; 创建cacti用户

Database changed

mysql> source /usr/local/apache/htdocs/cacti/cacti.sql 导入cacti的数据库并查看是否有错误

mysql> quit

clip_image001

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c77f35b1c0dcbddd1ea2497204560974.html