zabbix前端用戶的操作都保存在zabbix數(shù)據(jù)庫(kù)的users表里。一般直接在數(shù)據(jù)庫(kù)里面修改即可。
上思網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),上思網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為上思近千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的上思做網(wǎng)站的公司定做!
- 登入數(shù)據(jù)庫(kù):
MySQL -uroot -p
2.查看數(shù)據(jù)庫(kù)
show databases;
3.進(jìn)入數(shù)據(jù)庫(kù)
use zabbix;
4.查看表
show tables;
5.查看表里面的用戶
select userid,alias,passwd from users;
6.更新表里面的密碼
update users set passwd=MD5('123456') where userid=1;
7.刷新權(quán)限
flush privileges;
本文標(biāo)題:Zabbix監(jiān)控之修改管理員用戶密碼
當(dāng)前地址:
http://weahome.cn/article/pepicc.html