一、安装必备工具
- rrdtool
- apache
- mysql
- cron
- gcc
1 | yum -y install mariadb-server php php-cli php-mysql \ |
启动服务
1 | systemctl enable httpd.service |
二、Cacti下载
1 | cd /var/www/html |
三、配置cron
1 | adduser -d /var/www/html/cacti -s /sbin/nologin cacti |
1 | echo "*/5 * * * * cacti php /var/www/html/cacti/poller.php &>/dev/null" >> /etc/cron.d/cacti |
1 | cd /var/www/html/cacti |
四、配置cacti数据库
初始化
1 | /usr/bin/mysql_secure_installation |
导入初始数据
1 | mysqladmin -u root -p create cacti |
授权
1 | GRANT ALL ON cacti.* TO cacti@localhost IDENTIFIED BY 'cacti'; |
修改数据库信息
1 | vim /var/www/html/cacti/include/config.php |
五、配置php
cat /etc/php.ini
1 | date.timezone = Asia/Shanghai |
重启apache
1 | systemctl restart httpd |
六、Web完善
浏览器访问 http://xx.xx.xx.xx/cacti
- 本文作者: GaryWu
- 本文链接: https://garywu520.github.io/2018/04/24/cacti-0-8-8部署/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!