配置Mysql
1.启动mysql
输入命令:systemctl start mysqld
2.进入mysql shell环境
mysql -uroot -p
3.建立cacti数据库
create database cacti
4.配置cacti数据库权限
grant all privileges on cacti.* to 'cacti'@'localhost' identified by ''
5.退出mysql shell环境
6.导入cacti数据库
输入命令 mysql -uroot -p cacti < /usr/share/doc/cacti-1.1.10/cacti.sql
7.进入mysql shell环境
8.验证cacti数据库是否导入成功
use cacti;
show tables;
9.配置mysql时间(这步极其重要,否则后面的安装会报错)
GRANT SELECT ON mysql.time_zone_name TO 'cacti'@'localhost'
然后退出mysql shell
输入命令:
mysql_tzinfo_to_sql /usr/share/zoneinfo/ | mysql -uroot -p mysql