Thông tin Username và Password mặc định của zabbix là:
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)]>
- 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 namesYou can turn off this feature to get a quicker startup with -ADatabase changedMariaDB [zabbix_DB]>
MariaDB [zabbix_DB]> select alias from users;+---------+| alias |+---------+| Admin || guest || monitor |+---------+3 rows in set (0.00 sec)MariaDB [zabbix_DB]>
- 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: 0MariaDB [zabbix_DB]>exit;Bye[root@CentOS ~]#
No comments:
Post a Comment