Skip to content

Instantly share code, notes, and snippets.

@sebastian13
Created October 10, 2019 19:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastian13/89424b6836d65f98c74f722aaf9f4e07 to your computer and use it in GitHub Desktop.
Save sebastian13/89424b6836d65f98c74f722aaf9f4e07 to your computer and use it in GitHub Desktop.
Reset a zabbix user password using mysql
# 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