系統(tǒng)環(huán)境:CentOS 5.5
所有軟件都采取yum安裝
1、安裝Nginx平臺
編譯PHP的時候請檢查有沒加上--enable-sock參數(shù)。
安裝完畢后:
cd /usr/bin
ln -s /usr/local/php/bin/php php
2、安裝rrd和snmp相關東西
這里要先添加yum源,要不然Yum不到我們想要的東西
vi /etc/yum.repos.d/CentOS-Base.repo
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/RedHat/el$releasever/en/$basearch/dag
gpgcheck=1
gpgkey=http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
enabled=1
然后yum一下我們想要的東西
yum -y install php-snmp net-snmp net-snmp-libs net-snmp-utils rrdtool
3、配置snmpd,監(jiān)控機和被監(jiān)控機都要配置。PS:用新版的源碼包安裝,他的配置文件不一樣,可以用我們yum的舊一點包的配置文件搞過去。
原配置:
com2secnotConfigUser default public
access notConfigGroup "" any noauth exact systemview none none
#view all included .1 80
修改為:
com2secnotConfigUser 127.0.0.1 public #127.0.0.1 為cacti主機的配置
access notConfigGroup "" any noauth exact all none none
view all included .1 80
啟動服務:
service snmpd start
4、安裝cacti
tar zxvf cacti-0.8.7g.tar.gz
mv cacti-0.8.7g /home/www/cacti
創(chuàng)建數(shù)據(jù)庫并導入cacti的sql,并授權cacti用戶
mysql -uroot -p123456 -e "create database cacti;"
mysql -uroot -p123456 -e "GRANT ALL PRIVILEGES ON cacti.* TO 'cacti'@'127.0.0.1' IDENTIFIED BY 'cacti';"
mysql -uroot -p123456 cacti < /home/www/cacti/cacti.sql
配置cacti數(shù)據(jù)庫連接
vi /home/www/cacti/include/config.php
$database_type = "mysql";
$database_default = "cacti";
$database_hostname = "127.0.0.1";
$database_username = "cacti";
$database_password = "cacti";
$database_port = "3306";
5、配置Nginx
vi /usr/local/nginx/conf/nginx.conf
server
{
listen 80;
server_name www.lihp.com;
index index.html index.php;
root /home/www/cacti;
access_log /home/logs/access_www.log;
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
error_page 500 502 503 504 404 403 http://www.lihp.com;
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
expires 30d;
}
location ~ .*\.(js|css)?$ {
expires 6h;
}
location ~ .*\.(log|txt)$
{
deny all;
}
location ~ .*\.(php)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
}
6、瀏覽器運行
用瀏覽器打開 www.lihp.com,會顯示 cacti的安裝指南,設置好就不會再出現(xiàn)了。
點擊 “Next”
選擇“New Install”,點擊“Next”
億恩科技地址(ADD):鄭州市黃河路129號天一大廈608室 郵編(ZIP):450008 傳真(FAX):0371-60123888
聯(lián)系:億恩小凡
QQ:89317007
電話:0371-63322206 本文出自:億恩科技【mszdt.com】
服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]
|