cact i密码重置
程序员文章站
2022-04-02 19:23:43
...
【背景介绍】
有一段时间没有登入cacti,发现没有记录密码,导致cacti不能登入页面。
【修改密码】
[root@localhsot]# mysql -u root -p
mysql> use cacti;
mysql> select from user_auth;
mysql> update user_auth set password=md5("cactipasswd") where id='1';
现在cacti新密码就是cactipasswd
【参考】
http://blog.sina.com.cn/s/blog_741c82ba0100wfa7.html
有一段时间没有登入cacti,发现没有记录密码,导致cacti不能登入页面。
【修改密码】
[root@localhsot]# mysql -u root -p
mysql> use cacti;
mysql> select from user_auth;
mysql> update user_auth set password=md5("cactipasswd") where id='1';
现在cacti新密码就是cactipasswd
【参考】
http://blog.sina.com.cn/s/blog_741c82ba0100wfa7.html
上一篇: mysql - 修改密码