Hi, I have a huge problem - I can't log in on my zabbbix6.4 anymore. I had zabbix running on mariadb10 and wanted to set up an http to https redirect on my Apache2. My OS is Ubuntu 22.04. I tried the following several times.
The webfrontend does not accept password as admin or admin. I have reinstalled both the zabbix database and zabbix . I have backed up the original configuration before. Also i tried to give admin the same password as guest :
None of this helped. What else could I try ? THANKS in advance.
Code:
Code: update users set passwd='' where name='Admin'; Query OK, 0 rows affected (0,000 sec) Rows matched: 0 Changed: 0 Warnings: 0
Code:
MariaDB [zabbix]> update users set passwd=md5('password') where name='Admin';
Query OK, 0 rows affected (0,000 sec)
Rows matched: 0 Changed: 0 Warnings: 0
Code:
MariaDB [zabbix]> update users set passwd=md5('password') where name='Zabbix';
Query OK, 1 row affected (0.002 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Code:
Code: UPDATE zabbix.users AS a INNER JOIN zabbix.users AS b ON b.username='Admin' SET a.passwd = b.passwd;

Comment