Hello,
I just completed compiling and installing the current 1.8.3 version of zabbix, using RHEL 5.5 and mysql 5.0.77
I ran the create/schema/mysql.sql and create/data/data.sql and create/data/images_mysql.sql, which seems to go just fine
Starting the frontend, I can connect to the db and finish installation, but then there's a lot of warnings:
There are actually various threads on this, at this forum, however those seem to be for previous versions, and then still there is not a solution.
If you have an idea how to solve this, please let me know!
Thanks for reading anyway,
Alex
I just completed compiling and installing the current 1.8.3 version of zabbix, using RHEL 5.5 and mysql 5.0.77
I ran the create/schema/mysql.sql and create/data/data.sql and create/data/images_mysql.sql, which seems to go just fine
Starting the frontend, I can connect to the db and finish installation, but then there's a lot of warnings:
# mysql_fetch_array(): supplied argument is not a valid MySQL result resource[/etc/zabbix/db.inc.php:411]
# Error in query [select n.nodeid,min(r.permission) as permission, g.userid from nodes n left join rights r on r.id=n.nodeid and r.type=0 left join users_groups g on r.groupid=g.usrgrpid and g.userid=2 where n.nodeid in (0) group by n.nodeid, g.userid order by nodeid desc, userid desc, permission desc] [Unknown column 'r.type' in 'on clause']
The code in db.inc.php at line 411 is# Error in query [select n.nodeid,min(r.permission) as permission, g.userid from nodes n left join rights r on r.id=n.nodeid and r.type=0 left join users_groups g on r.groupid=g.usrgrpid and g.userid=2 where n.nodeid in (0) group by n.nodeid, g.userid order by nodeid desc, userid desc, permission desc] [Unknown column 'r.type' in 'on clause']
case "MYSQL":
$result = mysql_fetch_array($cursor);
break;
$result = mysql_fetch_array($cursor);
break;
There are actually various threads on this, at this forum, however those seem to be for previous versions, and then still there is not a solution.
If you have an idea how to solve this, please let me know!
Thanks for reading anyway,
Alex
Comment