前面已经安装了nagios nagvis等东西,今天决定把cacti也搬过来,毕竟在多台机器上使用总是有点麻烦的!
前面rrdtool也安装了!apache mysql等都安装了
下载cacti解压至网站目录我的是默认的在/var/www/html下!
1.建立cactiuser用户
useradd cactiuser
2.设置mysql
create database cactidb;
grant all privileges on cactidb to cactiuser@localhost identified by ‘password’;
3 mysql -uroot -p cactidb < cacti.sql
4chown -R cactiuser rra/ log/
5 修改cacti的属性chown -R apache.apache cacti 因为在网页目录下apache必须有选线进行写入,不然会提示没有数据等状况!
6vi include/config.php
找到以下内容:
$database_type = "mysql";
$database_default = "cactidb";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cactipw";
修改你设置的
7(8)crontab -u cactiuser -e
加入以下内容:
*/5 * * * * php /var/web/cacti/poller.php > /dev/null 2>&1
至此图形也出来了!
阅读(760) | 评论(0) | 转发(0) |