About Zabbix forget admin login password reset password

About Zabbix forget admin login password reset password

The problem of resetting the password for Zabbix admin login password is as follows:

1. Problem description:

2. Problem Solving

2.1 Zabbix connects to the MySQL database

[root@zabbix ~]#mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 52
Server version: 5.5.65-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> 

2.2 After entering the MySQL database, query the users table

MariaDB [zabbix]> use zabbix;
MariaDB [zabbix]> select userid,alias,passwd from users;
+--------+-------+----------------------------------+
| userid | alias | passwd |
+--------+-------+----------------------------------+
| 1 | Admin | a8105204604a0b11e916f3879aae3b0b |
| 2 | guest | d41d8cd98f00b204e9800998ecf8427e |
+--------+-------+----------------------------------+
2 rows in set (0.00 sec)

2.3 Generate a new password MD5, admin is the password

[root@zabbix ~]# echo -n admin | openssl md5
(stdin) = 21232f297a57a5a743894a0e4a801fc3

2.4 Then update the table data, the user with userid=1

MariaDB [zabbix]> update users set passwd='21232f297a57a5a743894a0e4a801fc3' where userid = '1';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

2.5 Refresh and reload the permission table

MariaDB [zabbix]> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

3. Log in again

This is the end of this article about resetting the Zabbix admin login password. For more information about Zabbix admin password, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Zabbix SAML SSO Login Bypass Vulnerability Operational Flow

<<:  Example code for implementing a text marquee with CSS3

>>:  Various front-end printing methods of web: CSS controls web page printing style

Recommend

How to hide the version number and web page cache time in Nginx

Nginx optimization---hiding version number and we...

Interviewer asked how to achieve a fixed aspect ratio in CSS

You may not have had any relevant needs for this ...

Will Update in a Mysql transaction lock the table?

Two cases: 1. With index 2. Without index Prerequ...

Vue2/vue3 routing permission management method example

1. There are generally two methods for Vue routin...

Recommend several MySQL related tools

Preface: With the continuous development of Inter...

Installation and use of mysql mycat middleware

1. What is mycat A completely open source large d...

Win2008 Server Security Check Steps Guide (Daily Maintenance Instructions)

The document has been written for a while, but I ...

DHTML objects (common properties of various HTML objects)

!DOCTYPE Specifies the Document Type Definition (...

How to solve the problem that the project in eclipse cannot be added to tomcat

1. Right-click the project and select properties ...

JS calculates the probability of winning based on the prize weight

Table of contents 1. Example scenario 1.1. Set th...

Vue implements left and right sliding effect example code

Preface The effect problems used in personal actu...

Analysis and solution of abnormal problem of loading jar in tomcat

Description of the phenomenon: The project uses s...

The implementation process of extracting oracle data to mysql database

In the migration of Oracle database to MySQL data...