Cacti监控服务器的安装

一、 Cacti 的安装

1.
安装环境: RedHat AS 4 企业版本

2.
安装 Apache MySQL PHP5 、Cacti

1 . 安装 MySQL

下载地址: http://dev.mysql.com/downloads/mysql/5.0.html
安装Mysql
# tar –zxvf mysql-standard-5.0.27-linux-i686-glibc23.tar.gz
# cp –rf mysql-standard-5.0.27-linux-i686-glibc23 /usr/local/
建立符号链接,如果以后有新版本的 MySQL 的话,你可以仅仅将源码解压到新的路径,然后重新做一个符号链接就可以了。这样非常方便,数据也更加安全。

# ln –s mysql-standard-5.0.27-linux-i686-glibc23 /usr/local/mysql
添加用于启动 MySQL 的用户及用户组(如果以前安装过 MySQl ,用户及用户组可能已存在)。

# useradd mysql

# groupadd mysql

//
修改 MySQl 目录的所有权

# cd /usr/local

# chgrp –R mysql mysql-standard-5.0.27-linux-i686-glibc23

# chgrp –R mysql

# chown –R mysql mysql-standard-5.0.27-linux-i686-glibc23/data

# chown –R mysql mysql/data

//
初始化授权表

# cd /usr/local/mysql

# scripts/mysql_install_db

# ln –s /usr/local/mysql/bin/* /usr/local/bin/

//
启动 Mysql

# bin/safe_mysqld --user=mysql &

//
配置系统启动时自动启动 MySQl

# cp support-files/mysql.server /etc/rc.d/init.d/mysqld

# chkconfig --add mysqld

2 . 安装 Apache

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

# tar –zxvf httpd-2.2.4.tar.gz

# cd httpd-2.2.4

# ./configure --prefix=/usr/local/apache --enable-so

//
编译时加上加载模块参数 --enable-so

# make

# make install

#vi /usr/local/apache/conf/httpd.conf

**修改 Apache 配置文件,添加 ServerName www.wqmsl.cn (或 本机 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 库( Cacti WeatherMap 插件必须要较新 GD 库的支持)

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

  tar 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.16.tar.tar
  cd libpng-1.2.16
  cd scripts/
  mv makefile.linux ../makefile
  cd ..
  make
  make install
  
注意,这里的 makefile 不是用 ./configure 生成,而是直接从 scripts/ 里拷一个


3
. 安装 freetype

  tar zxvf freetype-2.3.4 .tar.gz
  cd freetype-2.3.4  
  ./configure --prefix=/usr/local/freetype
  make
  make install


4
. 安装 Jpeg

   tar -zxf jpegsrc-1.v6b.tar.gz
   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

tar -zxvf fontconfig-2.4.2.tar.gz
cd fontconfig-2.4.2
make
make install


6
. 安装 GD

  tar -zxvf gd-2.0.34.tar.gz
  cd gd-2.0.34
  ./configure --with-png --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/libjpeg

  make
  make install

编译时显示以下信息:

** Configuration summary for gd 2.0.34:

   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
. 安装 libxml RedHat AS 4 默认安装 libxml 包,但版本太低, PHP5 需要更高版本的 libxml 包。
      # tar –zxvf libxml2-2.6.25.tar.gz
      # cd libxml2-2.6.25
      # ./configure
      # make
      # make install



8
. 安装 PHP

PHP
下载地址: http://www.php.net/downloads.php#v5

tar -zxvf  php-5.2.3.tar.gz
cd php-5.2.3
# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/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-mail --with-jpeg-dir=/usr/local/libjpeg --with-png --with-zlib-dir=/usr/local/zlib --enable-xml --enable-mbstring --enable-sockets

# make

# make install

# 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 image/x-icon .ico

修改 DirectoryIndex 行,添加 index.php

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

# vi /usr/local/apache/htdocs/test.php<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

添加以下行:

 

//php标记(用<代替[

 

[?php      

 

Phpinfo();

 

?]

 

wq保存退出。

 

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

 

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

 

在浏览器中输入:http://www.yourdomain.com/test.php进行测试。

 

 

 

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   //激活对 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      //支持套接字

 

    

 

1.安装RRDTool

 

1.安装cgilib

 

tar -zxf cgilib-0.5.tar.gz

 

cd cgilib-0.5

 

make CC=gcc CFLAGS="-O3 -fPIC -I."

 

mkdir -p /usr/local/cgilib/include

 

cp *.h /usr/local/cgilib /include

 

mkdir -p /usr/local/cgilib /lib

 

cp libcgi* /usr/local/cgilib /lib

 

2.安装libart_lgpl

 

tar -zxvf libart_lgpl-2.3.17.tar.gz

 

cd libart_lgpl-2.3.17

 

./configure --disable-shared --prefix=/usr/local/libart_lgpl

 

make

 

make install

 

RRDTool用到的其他GD库(zlibfreetypelibpng)已经在安装PHP是安装上了。

 

3.编辑/etc/ld.so.conf,添加以下几行到此文件中。

 

   /usr/local/zlib/lib

 

   /usr/local/freetype/lib

 

   /usr/local/libjpeg/lib

 

   /usr/local/cgilib/lib

 

   /usr/local/ libart_lgpl/lib

 

   并执行ldconfig命令,使用动态装入器装载找到共享库

 

4.安装RRDTool

 

下载地址:http://oss.oetiker.ch/rrdtool/pub/?M=D

 

tar -zxf rrdtool-1.2.11.tar.gz

 

cd rrdtool-1.2.11

 

./configure --prefix=/usr/local/rrdtool --disable-python --disable-tcl

 

make

 

make install

 

ln s /usr/local/rrdtool/bin/* /usr/local/bin/

 

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

 

2.安装net-snmp

 

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

 

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

 

# tar zxvf net-snmp-5.2.4.tar.gz

 

#cd net-snmp-5.2.4
#./configure --prefix=/usr/local/net-snmp  --enable-developer
#make
#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.6j.tar.gz

 

# mv r cacti-0.8.6j /usr/loca/apache/htdocs/cacti

 

# vi /usr/local/apache/htdocs/cacti/include/config.php

 

$database_type = "mysql";

 

$database_default = "cacti";

 

$database_hostname = "localhost";

 

$database_username = "cacti";

 

$database_password = "cacti";

 

//cacti用户添加cron任务

 

# su cacti

 

# crontab e

 

*/5 * * * * /usr/local/bin/php /usr/local/apache/htdocs/cacti/poller.php > /dev/null 2>&1

 

    

 

4.安装Cactid

 

CACTID 的安装需要以下支持:

 

o    net-snmp-devel (需要编译安装net-snmp时添加--enable-developer选项)

 

o    mysql              

 

o    mysql-devel     mysql源文件编译安装后默认支持)

 

o    openssl-devel  Redhat默认安装)

 

# tar -zxvf cacti-cactid-0.8.6i.tar.gz

 

# cd cacti-cactid-0.8.6i

 

# ./configure --with-mysql=/usr/local/mysql --with-snmp=/usr/local/net-snmp

 

# make

 

//这时你将在此目录下看到多出了cactidcactid.conf两个文件

 

# mkdir /usr/local/cactid

 

# cp cactid cactid.conf /usr/local/cactid

 

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

 

DB_Host         127.0.0.1

 

DB_Database     cacti

 

DB_User         cacti

 

DB_Pass         cacti

 

    

 

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/cacti

 

# mysql uroot p cacti < cacti.sql

 

Password:

 

    

 

6.完成cacti的安装

 

1.在浏览器中输入:http://www.yourdomain.com/cacti/

 

默认用户名: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/cactid/cactid
4.进入cacti后需确认更改以下位置

 

Console>Settings>General

 

Console>Settings>oller
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值