/*auto readmore*/ /*auto readmore*/ /* an hien script*/ // an hien password /*an hien ma chuong trinh cong tru */ /*Scrollbox thanh cuon*/ /***Nhung CODE***/ /* dòng xanh dòng trắng */ /* https://cdnjs.com/libraries/prism lay thu vien, can vao ten file ma goi 1. copy link vao vi du:prism-python.min.js 2. ten ngon nua la python */ /*=== New posts ===*/ /*header slider*/ /*=== bai viet lien quan===*/ /*===tabcode===*/

Reset Password Zabbix Admin Via MySQL

Thông tin Username và Password mặc định của zabbix là:

  • Username: Admin
  • Password: zabbix

Nếu như chúng ta quên password thì không thể đăng nhập vào được. Tuy nhiên chúng ta có thể reset password của zabbix thông qua MySQL từ linux console.


Thực hiện:

  • Kết nối với MySQL với username root:

[root@CentOS ~]# mysql -u root -p

Enter password: <Nhập vào password của root -> Enter >

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 44903

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)]> 


  • Xem thông tin các database hiện tại
MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| zabbix_DB          |
+--------------------+
4 rows in set (0.00 sec)

MariaDB [(none)]> 

Tên của cơ sở dữ liệu hiện tại là:  zabbix_DB

  • Kết nối vào database xem các user đang tồn tại trên zabbix
MariaDB [(none)]> use zabbix_DB;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [zabbix_DB]> 

MariaDB [zabbix_DB]> select alias from users;
+---------+
| alias      |
+---------+
| Admin   |
| guest      |
| monitor  |
+---------+
3 rows in set (0.00 sec)
MariaDB [zabbix_DB]> 

Admin là username chúng ta cần

  • Reset password và thoát khỏi MySql
MariaDB [zabbix_DB]> update zabbix_DB.users set passwd=md5('P@ssw0rd') where alias='Admin';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1  Changed: 0  Warnings: 0

MariaDB [zabbix_DB]>exit;
Bye
[root@CentOS ~]# 

Bây giờ chúng ta có thể đăng nhập vào zabbix với password mới là: P@ssw0rd

Xong!

No comments:

Post a Comment

/*header slide*/