zabbix 密码忘记了如何恢复

 

1、进入数据库

 

2、使用zabbix的数据库

use zabbix;

 

3、查看表信息

show tables;

 

4、搜索users表

select * from users;

 

5、修改userid为1的密码

update  users set passwd=md5("zabbix") where userid='1';

 

相关文章:

  • 2021-04-06
  • 2021-09-11
  • 2021-11-22
猜你喜欢
  • 2021-11-28
  • 2021-04-20
  • 2021-12-04
  • 2022-12-23
  • 2021-06-01
  • 2021-11-07
  • 2022-02-22
相关资源
相似解决方案