终于搞定了CACTI,特写手记一篇,也向网上无数被我抄袭的朋友们问好:)

1.
安装环境:RedHat AS 5 UP1(其实4.0我也能搞定,但是spine就一直搞不定,还是用AS5吧,至少还是新版本呵)
分区什么的可以用默认设置,特别要说明的是安装时切记要安装development tools,否则下面安装时会问题百出呵。

为方便大家安装,我特将所有的源程序打了个包放在网上供大家下载,地址为:

http://218.4.155.86/cacti.rar

2.
安装ApacheMySQLPHP

1.安装MySQL

下载地址:http://dev.mysql.com/downloads/mysql/5.0.html

 //
查看系统中是否已经安装了MySQL,如果是卸载所有以mysql开头的包。

# rpm -qa | grep mysql
# rpm -e mysql-*

//
查找/etc/my.cnfMySQL的选项配置文件),如果有请删除它,以免影响新安装版本的启动。
# rm -f /etc/my.cnf
# tar zxvf mysql-5.0.51a-linux-i686-icc-glibc23.tar.tar
# cp -rf mysql-5.0.51a-linux-i686-icc-glibc23 /usr/local/


//
建立符号链接,如果以后有新版本的MySQL的话,你可以仅仅将源码解压到新的路径,然后重新做一个符号链接就可以了。这样非常方便,数据也更加安全。
# ln -s mysql-5.0.51a-linux-i686-icc-glibc23 /usr/local/mysql

//
添加用于启动MySQL的用户及用户组(如果以前安装过MySQl,用户及用户组可能已存在)。
# useradd mysql
# groupadd mysql

//
初始化授权表
# cd /usr/local/mysql
# scripts/mysql_install_db

//
修改MySQl目录的所有权
# cd /usr/local
# chgrp -R mysql mysql-5.0.51a-linux-i686-icc-glibc23
# chgrp -R mysql mysql
# chown -R mysql mysql-5.0.51a-linux-i686-icc-glibc23/data
# chown -R mysql mysql/data
# ln -s /usr/local/mysql/bin/* /usr/local/bin/

//
启动Mysql
# bin/safe_mysqld --user=mysql &

//
配置系统启动时自动启动MySQl
# cd /usr/local/mysql
# cp support-files/mysql.server /etc/rc.d/init.d/mysqld
# chkconfig --add mysqld

//
修改MySQL的最大连接数
# vi /etc/my.cnf

//
添加以下行
[mysqld]
set-variable=max_connections=1000
set-variable=max_user_connections=500
set-variable=wait_timeout=200

//max_connections
设置最大连接数为1000
//max_user_connections
设置每用户最大连接数为500
//wait_timeout
表示200秒后将关闭空闲(IDLE)的连接,但是对正在工作的连接不影响。

//
保存退出,并重新启动MySQL
# service mysqld restart

//
重新启动MySQL后使用下面的命令查看修改是否成功

# mysqladmin -uroot -p variables

Password:

//
可以看到以下项说明修改成功

| max_connections                 | 1000

| max_user_connections            | 500

| wait_timeout                    | 200

 

2.安装Apache

下载地址:http://httpd.apache.org/

# tar jxvf httpd-2.2.8.tar.bz2
# cd httpd-2.2.8
# ./configure --prefix=/usr/local/apache --enable-so
//
编译时加上加载模块参数--enable-so

# make
# make install

#vi /usr/local/apache/conf/httpd.conf
//
修改Apache配置文件,添加ServerName www.yourdomain.com(或ServerName 本机ip

# vi /etc/rc.d/rc.local
//
rc.local上加入一行/usr/local/apache/bin/apachectl -k start,系统启动时启动Apache服务。

3.安装PHP

先安装zlib,freetype,libpng,jpeg以便于让PHP支持GD库(CactiWeatherMap插件必须要较新GD库的支持)

库文件下载地址:http://oss.oetiker.ch/rrdtool/pub/libs/

1
.安装zlib
# tar zxvf zlib-1.2.3.tar.gz
# cd zlib-1.2.3
# ./configure --prefix=/usr/local/zlib
# make
# make install

2
.安装libpng
# tar zxvf libpng-1.2.18.tar.tar
# cd libpng-1.2.18
# cd scripts
# mv makefile.linux ../makefile
# cd ..
# make
# make install
//
注意,这里的makefile不是用./configure生成,而是直接从scripts/里拷一个

3
.安装freetype

# tar zxvf freetype-2.3.5.tar.gz
# cd freetype-2.3.5 
# ./configure --prefix=/usr/local/freetype
# make
# make install
# cp /usr/local/freetype/lib/pkgconfig/freetype2.pc  /usr/lib/pkgconfig/
//
这句话等下装rrdtool会用到,就在这里操作掉完事呵:)

4
.安装Jpeg

# tar zxvf jpegsrc.v6b.tar.tar
# cd jpeg-6b/
# mkdir /usr/local/libjpeg
# mkdir /usr/local/libjpeg/include
# mkdir /usr/local/libjpeg/bin
# mkdir /usr/local/libjpeg/lib
# mkdir /usr/local/libjpeg/man
# mkdir /usr/local/libjpeg/man/man1

//
可以用mkdir -p /usr/local/libjpeg/man/man1 一步创建多层目录

# ./configure --prefix=/usr/local/libjpeg --enable-shared --enable-static
# make && make install
//
注意,这里configure一定要带--enable-shared参数,不然,不会生成共享库

5
.安装Fontconfig(这里搞了我很久呵,主要是configure后面的参数要全呵)
# tar zxvf fontconfig-2.4.2.tar.gz
# cd fontconfig-2.4.2
# ./configure --with-freetype-config=/usr/local/freetype/bin/freetype-config
# make
# make install

6
.安装GD(这里有可能第一次make不会成功,make程序会自动修正,所以请多试一次)
# tar zxvf gd-2.0.35.tar.gz
# cd gd-2.0.35
# ./configure --prefix=/usr/local/libgd --with-png --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/libjpeg
# make
# make install

编译时显示以下信息:

** Configuration summary for gd 2.0.35:

   Support for PNG library:          yes
   Support for JPEG library:         yes
   Support for Freetype 2.x library: yes
   Support for Fontconfig library:   yes
   Support for Xpm library:          no
   Support for pthreads:             yes

 

7
.编辑/etc/ld.so.conf,添加以下几行到此文件中。
/usr/local/zlib/lib
/usr/local/freetype/lib
/usr/local/libjpeg/lib
/usr/local/libgd/lib

//
执行ldconfig命令,使用动态装入器装载找到共享库
# ldconfig
 
8
.安装libxmlRedHat AS 4默认安装libxml包,但版本太低,PHP5需要更高版本的libxml包。
# tar zxvf libxml2-sources-2.6.31.tar.gz
# cd libxml2-2.6.31/
# ./configure
# make
# make install
 
9
.安装PHP
PHP
下载地址:http://www.php.net/downloads.php#v5

# tar jxvf  php-5.2.6.tar.bz2
# cd php-5.2.6
# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-gd=/usr/local/libgd --enable-gd-native-ttf --with-ttf --enable-gd-jis-conv --with-freetype-dir=/usr/local/freetype --with-jpeg-dir=/usr/local/libjpeg --with-png-dir=/usr --with-zlib-dir=/usr/local/zlib --enable-xml --enable-mbstring --enable-sockets
# make
# make install

RHEL5上安装PHP时有可能会出现
error while loading shared libraries: /usr/local/gd/lib/libgd.so.2: cannot restore segment prot after reloc: Permission denied

原来这是SELinux搞的鬼,解决办法有如下两个
1.
使用chcon 命令
chcon -t texrel_shlib_t /
路径/路径/名字.so   (这个文件视具体执行文件.)
2.
禁止掉SELinux
编辑/etc/sysconfig/selinux,找到:
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - SELinux is fully disabled.
SELINUX=enforcing

如果SELINUX已经是 SELINUX=disabled,那么就不用改了,否则就把SELINUX=enforcing 注释掉,新加一行:
SELINUX=disabled
保存,退出,重新启动即可make install了。

# cp php.ini-recommended /usr/local/php/lib/php.ini
# ln -s /usr/local/php/bin/* /usr/local/bin/
# vi /usr/local/apache/conf/httpd.conf
//
查找到
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz

在其下加入
AddType application/x-tar .tgz
AddType application/x-httpd-php .php
AddType p_w_picpath/x-icon .ico

修改DirectoryIndex 行,找到
DirectoryIndex index.html

修改为
DirectoryIndex index.php index.html index.html.var

# vi /usr/local/apache/htdocs/test.php
//
建立一个测试页面,看看php是否能正常运行,在内容中添加以下行:
<?php      
 Phpinfo();
?>

wq!
保存退出,下面我们来重启下apache

# /usr/local/apache/bin/apachectl -k stop
# /usr/local/apache/bin/apachectl -k start

在浏览器中输入:http://www.yourdomain.com/test.php进行测试,如果不能显示,请注意下检查linux的防火墙是否把www服务阻挡了。

下面是对刚刚php编译选项的解释:
--prefix=/usr/local/php   //
指定PHP的安装目录
--with-apxs2=/usr/local/apache2/bin/apxs      //
支持Apache模块
--with-mysql=/usr/local/mysql    //
支持MySQl
--with-gd=/usr/local/libgd     //
支持GD
--enable-gd-native-ttf     //
激活对本地 TrueType 字符串函数的支持
--with-ttf     //
激活对 FreeType 1.x 的支持
--with-freetype-dir=/usr/local/freetype    //
激活对 FreeType 2.x 的支持
--with-jpeg-dir=/usr/local/libjpeg //
激活对 jpeg-6b 的支持
--with-png-dir=/usr   //
激活对 png 的支持
--with-zlib-dir=/usr/local/zlib //
激活对zlib 的支持
--enable-mbstring    //
激活mbstring模块
--enable-gd-jis-conv //
使JIS-mapped可用,支持日文字体
--with-mail   //
支持Mail函数
--enable-xml     //
支持XML
--enable-sockets      //
支持套接字
    
好了,环境基本都搭好了,下面我们来装rrdtool,这也是个公认比较难装的东东,不过我在网上找到了一个兄弟打好的包,把啥啥东东都配好了,一次性运行就成,大家可以在附件中下载rrdtool-1.2.23.tar.gz就是啦。

1.
安装RRDTool
# tar zxvf rrdtool-1.2.23.tar.gz
# cd rrdtool-1.2.23.tar.gz
# ./rrdinstall.sh

//
完成后建立符号连接
# ln -s /usr/local/rrdtool/bin/* /usr/local/bin/

//
执行rrdtool看是否安装正确
# rrdtool

2.
安装net-snmp
RedHat
默认安装了SNMP服务,但好象没有snmpwalk,snmpget这两个命令,所以需要编译安装NET-SNMP

NET-SNMP
官方网站:http://www.net-snmp.org/

# tar zxvf net-snmp-5.4.1.tar.gz
# cd net-snmp-5.4.1
# ./configure --prefix=/usr/local/net-snmp  --enable-developer
# make
# make install

如果出错找不到libbeecrypt.la,在make时可能出现如下error
libtool: link: cannot find the library `/usr/lib/libbeecrypt.la' (librpmio.la: /usr/lib/libbeecrypt.la)
make[1]: *** [snmpd] Error 1
make[1]: Leaving directory `/home/xxx/net-snmp-5.3.2/agent'
make: *** [subdirs] Error 1
 
解决办法:
http://sourceforge.net/projects/beecrypt下载beecrypt-4.1.2.tar.gz
然后运行如下命令:
# tar -zxvf beecrypt-4.1.2.tar.gz
# ./configure -prefix=/usr
(默认是安装在/usr/local,我们需要安装在/usr目录下)
# make
# make install

如果出错/usr/bin/ld: cannot find -lelf,在make时可能出现如下error
/usr/bin/ld: cannot find -lelf
collect2: ld returned 1 exit status
make[1]: *** [snmpd] Error 1
make[1]: Leaving directory `/home/xxx/net-snmp-5.3.2/agent'
make: *** [subdirs] Error 1
 
解决办法:
# ln -s libelf.so.1 /usr/lib/libelf.so

好,我们完成make install
# ln -s /usr/local/net-snmp/bin/* /usr/local/bin/
# cp EXAMPLE.conf  /usr/local/net-snmp/share/snmp/snmpd.conf

//
修改snmpd.conf(修改COMMUNITY、允许抓取snmp数据的主机、抓取数据范围等)。

# /usr/local/net-snmp/sbin/snmpd     //
启动SNMP服务

# vi /etc/rc.d/rc.local
//
rc.local上加入一行/usr/local/net-snmp/sbin/snmpd,系统启动时启动SNMP服务。

3.
安装Cacti

Cacti
官方网站:www.cacti.net/
# tar zxvf cacti-0.8.7b.tar.gz
# cd cacti-0.8.7b
# cp -rf * /usr/local/apache/htdocs/
# cd /usr/local/apache/htdocs
# vi /usr/local/apache/htdocs/include/config.php
//
修改配置文件,设置好数据库信息
$database_type = "mysql";
$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cacti";
$database_password = "cacti";
//
这个密码就随便你设啦,但是请记住在下面配置数据库时要一致呵

//
添加cacti用户
# useradd cacti

//
rra目录的所有权给cacti用户
# chown -R cacti /usr/local/apache/htdocs/rra

//
修改cacti所在目录所属组
# chgrp -R cacti /usr/local/apache/htdocs

//
cacti用户添加cron任务
# su - cacti
# crontab -e
//
在其中加入
*/5 * * * * /usr/local/bin/php /usr/local/apache/htdocs/poller.php > /dev/null 2
>&1
//wq
保存退出,exit退回root用户。
//
注意:首次执行poller.php时请使用cacti用户,否则生成的rrd文件cacti将没有写入权限。

4.
安装Spine(这个只在RHAS 5 up1上测试成功过呵,在RHAS 4上装还要安装libtool,俺就不烦啦)
Spine
的安装需要以下支持:
o    net-snmp-devel
(需要编译安装net-snmp时添加--enable-developer选项)
o    mysql              
o    mysql-devel    
mysql源文件编译安装后默认支持)
o    openssl-devel 
Redhat默认安装)

# tar -zxvf cacti-spine-0.8.7a.tar.gz
# cd cacti-spine-0.8.7a
# ./configure --with-mysql=/usr/local/mysql --with-snmp=/usr/local/net-snmp
# make

//
这时你将在此目录下看到多出了spinespine.conf两个文件
# mkdir /usr/local/spine
# cp spine spine.conf /usr/local/spine

# vi  /usr/local/spine/spine.conf       //
修改spine配置文件

DB_Host         127.0.0.1
DB_Database     cacti
DB_User         cacti
DB_Pass         cacti
//DB_Host
注意要改成127.0.0.1

# ln -s /usr/local/mysql/lib/libmysqlclient_r.so.15 /usr/lib/libmysqlclient_r.so.15
//
这个是spine运行需要的东东,可惜它自己编译的时候没有搞好,只好我们手工加啦。

5.
数据库配置
#mysql -uroot -p
Password:
mysql> create database cacti;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on cacti.* to cacti@localhost identified by "cacti";
Query OK, 1 row affected (0.00 sec)
mysql>exit

# cd /usr/local/apache/htdocs
# mysql -uroot -p cacti < cacti.sql
Password:
//
好了,数据基本配完了:)

6.
完成cacti的安装

1
.在浏览器中输入:http://www.yourdomain.com/  //这个要看你刚刚配的网址啦:)

默认用户名:admin 密码:admin

2
.更改密码

3
.设置cacti用到的命令路径

snmpwalk Binary Path          /usr/local/bin/snmpwalk

snmpget Binary Path         /usr/local/bin/snmpget

RRDTool Binary Path         /usr/local/bin/rrdtool

PHP Binary Path              /usr/local/bin/php

Cacti Log File Path           /usr/local/apache/htdocs/cacti/log/cacti.log

Cactid Poller File Path      /usr/local/spine/spine

大功告成,下面就是进系统配置啦,我就不详述啦:)