Skip to content

Instantly share code, notes, and snippets.

@CHERTS
Created October 19, 2020 16:09
Show Gist options
  • Save CHERTS/5264fc4d4acfdf30510376e1490230c2 to your computer and use it in GitHub Desktop.
Save CHERTS/5264fc4d4acfdf30510376e1490230c2 to your computer and use it in GitHub Desktop.
Set standart admin password for Zabbix
# For Zabbix < 5.0 (password: zabbix)
update users set passwd='5fce1b3e34b520afeffb37ce08c7cd66' where alias='Admin';
# For Zabbix >= 5.0 (password: zabbix)
update users set passwd='$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK' where alias='Admin';
@vapstor
Copy link

vapstor commented Nov 12, 2023

thanks, i was trying "Zabbix" (Uppercase)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment