您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Cacti如何安裝及配置,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Cacti簡介
Cacti是用php語言實現的一個軟件,用snmp服務獲取數據,用rrdtool儲存和更新數據,當用戶需要查看數據的時候用rrdtool生成圖表呈現給用戶。因此,snmp和rrdtool是cacti的關鍵。Snmp關系著數據的收集,rrdtool關系著數據存儲和圖表的生成。
Mysql配合PHP程序存儲一些變量數據并對變量數據進行調用,如:主機名、主機ip、snmp團體名、端口號、模板信息等變量。
snmp抓到數據不是存儲在mysql中,而是存在rrdtool生成的rrd文件中(在cacti根目錄的rra文件夾下)。rrdtool對數據的更新和存儲就是對rrd文件的處理。
Cacti主要功能
網絡流量監測圖形分析工具
Cacti怎么用
CentOS-5:
rpm -ivh http://apt.sw. be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.5.2-2.el5.rf.i386.rpm
yum install rrdtool -y
CentOS-6:
rpm -ivh http://apt.sw.be/redhat/el6/en/i386/rpmforge/RPMS/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
yum install rrdtool -y
1、安裝net-snmp
yum install net-snmp net-snmp-libs net-snmp-utils
2、配置net-snmp
修改:
view systemview included .1.3.6.1.2.1.1
為:
view systemview included .1.3.6.1.2.1
3、測試net-snmp
# service snmpd start
# snmpwalk -v 1 -c public localhost .1.3.6.1.2.1.1.1.0
SNMPv2-MIB::sysDescr.0 = STRING: Linux cronos 2.4.28 #2 SMP ven jan 14 14:12:01 CET 2005 i686
yum install httpd php php-mysql php-snmp php-xml php-gd mysql mysql-server
service httpd start
service mysqld start
mysqladmin -uroot password yourpassword
mysqladmin --user=root --password reload
1、下載cacti
cd /tmp
wget http://www.<cite class="highlight" highlight="true" >cacti. net</cite>/downloads/cacti-0.8.8a.tar.gz
tar xzf cacti-0.8.8a.tar.gz
mv cacti-0.8.8a /var/www/html/cacti
cd /var/www/html/cacti
2、創建數據庫
mysqladmin --user=root -p create cacti
3、導入數據庫
mysql -uroot -p cacti < cacti.sql
4、創建數據庫用戶
shell> mysql -uroot -p mysql
mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'cactipassword';
mysql> flush privileges;
5、配置include/config.php
$database_type = "mysql";
$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cactipassword";
/* load up old style plugins here */
$plugins = array();
//$plugins[] = 'thold';
/*
Edit this to point to the default URL of your Cacti install
ex: if your cacti install as at http://serverip/cacti/ this
would be set to /cacti/
*/
$url_path = "/cacti/";
/* Default session name - Session name must contain alpha characters */
#$cacti_session_name = "Cacti";
6、設置目錄權限
chown -R cactiuser rra/ log/
cactiuser為系統存在的用戶,為了收集數據。
7、配置計劃任務
echo "*/5 * * * * cactiuser php /var/www/html/cacti/poller.php > /dev/null 2>&1">>/etc/crontab
service crond restart
8、完成cacti的安裝
1) 在瀏覽器中輸入:http://www.yourdomain. com/cacti/
默認用戶名:admin 密碼:admin
2) 更改密碼
3)設置cacti用到的命令路徑
至此已經安裝完成
關于“Cacti如何安裝及配置”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。