實(shí)驗(yàn)環(huán)境:
物理主機(jī) redhat7.0 內(nèi)核版本 3.10.0-123.el7.x86_64
虛擬機(jī) redhat6.5 內(nèi)核版本 2.6.32-431.el6.x86_64
server10.example.com 172.25.254.10
所需軟件包: cacti-0.8.8h.tar.gz
cacti-spine-0.8.8h.tar.gz
php-snmp-5.3.3-26.el6.x86_64.rpm
monitor-v1.3-1.tgz
創(chuàng)新互聯(lián)是一家專注于成都做網(wǎng)站、網(wǎng)站建設(shè)與策劃設(shè)計(jì),臨朐網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:臨朐等地區(qū)。臨朐做網(wǎng)站價(jià)格咨詢:18982081108
1.Cacti 簡(jiǎn)介
cacti 是用 php 語(yǔ)言實(shí)現(xiàn)的一個(gè)軟件,它的主要功能是用 snmp 服務(wù)獲取數(shù)據(jù), snmp 需要的變量數(shù)據(jù)是通過(guò)讀取 MySQL 數(shù)據(jù)庫(kù)得到,然后用 rrdtool 儲(chǔ)存和更新數(shù)據(jù),當(dāng)用戶需要查看數(shù)據(jù)的時(shí)候用 rrdtool 生成圖表呈現(xiàn)給用戶。
rrdtool 對(duì)數(shù)據(jù)的更新和存儲(chǔ)就是對(duì) rrd 文件的處理,rrd 文件是大小固定的檔案文件,它能夠存儲(chǔ)的數(shù)據(jù)筆數(shù)在創(chuàng)建時(shí)就已經(jīng)定義。
1. Snmp 用來(lái)收集數(shù)據(jù);
2. Rrdtool 用來(lái)存儲(chǔ)數(shù)據(jù)和生成圖表;
3. Mysql 用來(lái)配合 PHP 程序存儲(chǔ)一些變量數(shù)據(jù)并對(duì)變量數(shù)據(jù)進(jìn)行調(diào)用。
2.cacti基本配置
(1)[root@server10 mnt]# yum install httpd -y
[root@server10 mnt]# tar -zxf cacti-0.8.8h.tar.gz
[root@server10 mnt]# mv cacti-0.8.8h /var/www/html/cacti
(2)[root@server10 mnt]# yum install php php-mysql mysql-server -y
##簡(jiǎn)單的lnmp架構(gòu)
[root@server10 mnt]# yum install rrdtool -y
(3)[root@server10 mnt]# yum install php-snmp-5.3.3-26.el6.x86_64.rpm -y
##php-snmp的版本要和php的版本相同
(4)配置數(shù)據(jù)庫(kù)
[root@server10 mnt]# /etc/init.d/mysqld start ##打開(kāi)數(shù)據(jù)庫(kù)
[root@server10 mnt]# mysql_secure_installation ##數(shù)據(jù)庫(kù)安全初始化,給一個(gè)root密碼,接下來(lái)都是y
[root@server10 mnt]# mysql -uroot -p ##查看數(shù)據(jù)庫(kù)是否初始化正確,我給的root密碼是westos
[root@server10 mnt]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.1.71 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
+--------------------+
2 rows in set (0.00 sec)
mysql>
cd /var/www/html/cacti
<1> mysqladmin -pwestos create cacti ##創(chuàng)建cacti數(shù)據(jù)庫(kù)用戶
<2> mysql -pwestos cacti < cacti.sql ##將cacti.sql表導(dǎo)入cacti數(shù)據(jù)庫(kù)
<3> mysql -predhat -e "grant all on cacti.* to cacti@localhost identified by 'redhat';" ##將cacti數(shù)據(jù)庫(kù)的所有內(nèi)容的權(quán)限賦給本地用戶cacti
<4> mysql -ucacti -predhat ##進(jìn)入cacti數(shù)據(jù)庫(kù)查看一下
《1》show databses;
《2》use cacti;
《3》show tatbls;
(5)配置cacti的apache訪問(wèn)頁(yè)
cd /var/www/html/cacti/include/
<1>vim config.php
29 $database_username = "cacti";
30 $database_password = "redhat";
39 $url_path = "/cacti/";
42 $cacti_session_name = "Cacti";
<2>/etc/init.d/httpd restart ##重啟apache
<3>瀏覽器訪問(wèn)http://172.25.254.10/cacti/ ##注意虛擬機(jī)和物理機(jī)的時(shí)間要同步
(6)瀏覽器訪問(wèn)時(shí)有紅色警告出現(xiàn),那是因?yàn)閏acti服從snmp協(xié)議,虛擬機(jī)上當(dāng)然要有這個(gè)協(xié)議支持咯!
(7)yum install net-snmp-utils -y ##安裝snmp協(xié)議
useradd -u 1000 -M -d /var/www/html/cacti cacti ##/var/www/html/cacti里的文件的所屬用戶和用戶組都是id(1000),這是因?yàn)橛脩舨淮嬖?我們需要建立一個(gè)id=1000用戶,安全第一
su - cacti
<1>crontab -e ##編輯定時(shí)任務(wù)
*/5 * * * * php /var/www/html/cacti/poller.php > /dev/null 2>&1
<2>crontab -l ##查看定時(shí)任務(wù)
瀏覽器刷新查看
(8)網(wǎng)頁(yè)登陸,密碼為admin,然后改密碼
基本的安裝就完成了,現(xiàn)在正在監(jiān)控虛擬機(jī)主機(jī)。