Hello,
I just installed Zabbix 1.5.3 rev 5841 (download link: http://www.zabbix.com/developers.php ) and just did the install the way I normally do. It is the same way I always install Zabbix on Debian via Source.
The installation went smooth, but when I tried to log in as Admin (no Password) I get "ERROR: Login name or password is incorrect". At first I thought it was my browser (Firefox 3), so I tried Ephiphany...then Opera...then over to a Windows box and tried IE. Then I thought it was my install. So I created a virtual machine, and using the guide (http://www.zabbix.com/wiki/doku.php?...ch_from_source ) on the wiki I tried again (which is almost exactly how I do it, just a few steps moved around).
Same thing. I can not log in via Admin. I have tried no password, I have tried admin and Admin as the login and the password (all combinations). Nothing works. I can log in as guest, but I have no permissions to anything at all. No pages show.
Since the guest logs in, and Admin doesn't I thought the password was something it shouldn't be. I thought "I will just reset it then!" So I logged into mysql.
I reset mysql, apache, and I even restarted the system. Nothing. I still can't log in.
After searching the forums and Google I have found a number of posts similar to mine, but they all seem to be for old versions and most have a posting date of 2007 or earlier. I didn't find a bug report similar to this problem for anything 1.5. I also did an update with 1.5.2 svn a few weeks ago, and did not have this problem.
2 systems (one being a fresh virtual machine build) and I am unable to get this version to log in. Anyone having the same problem? Is it a bug that I have some how missed in my search? Anyone see anything I may have done to screw it up?
Thanks!
I just installed Zabbix 1.5.3 rev 5841 (download link: http://www.zabbix.com/developers.php ) and just did the install the way I normally do. It is the same way I always install Zabbix on Debian via Source.
The installation went smooth, but when I tried to log in as Admin (no Password) I get "ERROR: Login name or password is incorrect". At first I thought it was my browser (Firefox 3), so I tried Ephiphany...then Opera...then over to a Windows box and tried IE. Then I thought it was my install. So I created a virtual machine, and using the guide (http://www.zabbix.com/wiki/doku.php?...ch_from_source ) on the wiki I tried again (which is almost exactly how I do it, just a few steps moved around).
Same thing. I can not log in via Admin. I have tried no password, I have tried admin and Admin as the login and the password (all combinations). Nothing works. I can log in as guest, but I have no permissions to anything at all. No pages show.
Since the guest logs in, and Admin doesn't I thought the password was something it shouldn't be. I thought "I will just reset it then!" So I logged into mysql.
Code:
mysql> select * from users; +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ | userid | alias | name | surname | passwd | url | autologin | autologout | lang | refresh | type | theme | attempt_failed | attempt_ip | attempt_clock | +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ | 1 | Admin | Zabbix | Administrator | 5fce1b3e34b520afeffb37ce08c7cd66 | | 0 | 900 | en_gb | 30 | 3 | deafault.css | 3 | 192.168.5.215 | 1217327098 | | 2 | guest | Default | User | d41d8cd98f00b204e9800998ecf8427e | | 0 | 900 | en_gb | 30 | 1 | default.css | 0 | | 0 | +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ 2 rows in set (0.00 sec) mysql> update users set passwd="d41d8cd98f00b204e9800998ecf8427e" where alias='Admin'; Query OK, 1 row affected (0.01 sec) Rows matched: 1 Changed: 1 Warnings: 0 mysql> select * from users; +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ | userid | alias | name | surname | passwd | url | autologin | autologout | lang | refresh | type | theme | attempt_failed | attempt_ip | attempt_clock | +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ | 1 | Admin | Zabbix | Administrator | d41d8cd98f00b204e9800998ecf8427e | | 0 | 900 | en_gb | 30 | 3 | deafault.css | 3 | 192.168.5.215 | 1217327098 | | 2 | guest | Default | User | d41d8cd98f00b204e9800998ecf8427e | | 0 | 900 | en_gb | 30 | 1 | default.css | 0 | | 0 | +--------+-------+---------+---------------+----------------------------------+-----+-----------+------------+-------+---------+------+--------------+----------------+-------------+---------------+ 2 rows in set (0.00 sec)
After searching the forums and Google I have found a number of posts similar to mine, but they all seem to be for old versions and most have a posting date of 2007 or earlier. I didn't find a bug report similar to this problem for anything 1.5. I also did an update with 1.5.2 svn a few weeks ago, and did not have this problem.
2 systems (one being a fresh virtual machine build) and I am unable to get this version to log in. Anyone having the same problem? Is it a bug that I have some how missed in my search? Anyone see anything I may have done to screw it up?
Thanks!

Comment