忘記密碼的方法
如果是admin 的密碼丟失,id = 1;其他用戶以此類推。
進入mysql
mysql> show databases;?
mysql> use cacti;
mysql> show tables;?
mysql> update user_auth set password=md5("newpassword") where id='1';
新的cacti密碼就是newpassword了~~
轉載于:https://blog.51cto.com/study2008/1842610