ERROR: 您的MySQL TimeZone 數據庫未被填充. 請在繼續之前填入此數據庫.
cacti安裝時報錯MySQL TimeZone database
在安裝cacti時,有一段報錯
1
|
ERROR: Your Cacti database login account does not have access to the MySQL TimeZone database. Please provide the Cacti database account "select" access to the "time_zone_name" table in the "mysql" database, and populate MySQL's TimeZone information before proceeding.
|
解決辦法:登錄mysql,執行以下內容
1
2
|
mysql> GRANT SELECT ON mysql.time_zone_name TO cacti@localhost IDENTIFIED BY 'cactiwhsir';
mysql> flush privileges;
|
然后發現又報錯
1
|
ERROR: Your MySQL TimeZone database is not populated. Please populate this database before proceeding.
|
解決辦法:執行以下內容
1
|
/usr/local/mysql/bin/mysql_tzinfo_to_sql /usr/share/zoneinfo/ | mysql -uroot -p mysql
|