zabbix小结(十二)zabbix密码修改
关于zabbix 的用户密码的修改分两种情况,一种具有管理员权限,而且知道原密码,直接在web界面上进行更改;另一种情况是,管理员密码忘记,无法进行权限认证进入web界面的情况。
一、正常更改用户密码
登录进入zabbix 的web界面,依次点击 administration —– Users —— 选定用户 ——– 在用户界面找到change password 选项,如下图:
按提示输入变更的密码并进行再次确认输入,最后save保存,即可完成密码的变更。
二、忘记密码,重置密码
此方法是通过进入数据库更改密码,操作步骤如下:
1查看数据库
2mysql> show databases;
3+--------------------+
4| Database |
5+--------------------+
6| zabbix |
7+--------------------+
85 rows in set (0.00 sec)
9进入数据库
10mysql> use zabbix;
11Reading table information for completion of table and column names
12You can turn off this feature to get a quicker startup with -A
13Database changed
14查看数据有那些表
15mysql> show tables;
16查看是否存放用户、密码信息
17mysql> select * from users;
18更改密码为zabbix
19mysql> update users set passwd=md5("zabbix") where userid='1';
20Query OK, 0 rows affected (0.01 sec)
21Rows matched: 1 Changed: 0 Warnings: 0
zabbix 的用户密码是使用md5的方式进行的加密 ,上面的mysql语句执行后,admin 管理员用户的密码就会改为zabbix 。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/zabbix-change-passord/3652.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.