Created
October 10, 2019 19:48
-
-
Save sebastian13/89424b6836d65f98c74f722aaf9f4e07 to your computer and use it in GitHub Desktop.
Reset a zabbix user password using mysql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Access mysql console | |
mysql -u root -p | |
# Select Database | |
use zabbix; | |
# List existing users | |
select * from users; | |
# Update Password | |
update users set passwd=md5('mynewpassword') where alias='Admin'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment