centos 安裝cacti 筆記

2021-08-15 06:50:49 字數 2954 閱讀 7533

yum -y install wget

service iptables stop       關閉防火牆

setenforce 0                關閉selinux

chkconfig --level 2345 snmpd on      設定snmp啟動項

chkconfig --level 2345 httpd on      設定http啟動項

chkconfig --level 2345 mysqld on     設定mysql啟動項

# 增加下行,避免啟動httpd服務出現關於servername的警告。

servername

自定義:

# 原配置檔案內容如下:

## yum安裝的httpd為2.2版本,在httpd-2.2配置段的"allow from localhost"後新增允許訪問的主機ip,

# 或者直接改為"allow from all"以允許所有ip訪問。

# 這樣才能進行cacti的web端安裝和監控。

# 設定時區

date

.timezone = asia/shanghai

wget 

tar zxvf cacti-1.1.36.tar.gz

mv cacti-1.1.36/* /var/www/html/cacti

wget 

tar zxvf cacti-spine-1.1.36.tar.gz

cd cacti-spine-1.1.36

./configure && make && make install

$ mysql

-uroot

mysql

> create database cacti;

mysql

> grant

allon cacti

.*to cacti@localhost identified

by'cactipassword';

mysql

> flush privileges;

grant all privileges on *.* to cacti@localhost identified by '

cactipassword

'; flush privileges;

mysql

> quit

$ mysql -uroot cacti < /var/www/html/cacti/cacti.sql

mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql

mysql初始沒有密碼,進入mysql,建立cacti資料庫,賦予cacti使用者對該資料庫進行操作的許可權,匯入

# 寫入下行,每五分鐘獲取監控資訊

*/5 * * * * /usr

/bin/php

/usr/share/cacti/poller.php

Cacti的安裝之CentOS

拿台伺服器來裝cacti了,初期選材選了很久,考慮是用freebsd呢,還是用rhel,甚至還考慮過windows下面裝,最後的最後,還是選擇centos下面裝咯。其實看中的是它的穩定和yum的資源。基本上cacti是運作在apache php mysql net snmp工具集 rrdtool這樣...

Centos基於xampp安裝CACTI

cacti是php編寫的b s結構運維軟體,具有簡單易用的特點,但是安裝相對比較複雜,這裡記錄下安裝過程進行分享 二 由於xampp預設的mysql密碼為空,需要先修改密碼 opt lampp bin mysql uroot p use mysql update user set password ...

linux下的cacti安裝(centos7)

1 cacti執行環境準備 cacti需要php apache mysql snmp rrdtool,以及cacti本身。cacti本體是用php開發的 通過snmp對遠端裝置資訊進行採集。apache mysql php在以前已經做過了,鏈結如下 這裡只對剩餘的部分進行安裝。2 安裝snmp yu...