Running Ubuntu 10.10 server,
mysql 5.1.41-3ubuntu12.10,
apache 2.2.14-5ubuntu8.4,
Zabbix Server v1.8.5 (revision 19050)
This is pretty much a fresh install, but let me give you some basic steps I did to get to this point.
Installed the system, installed pre-reqs, installed zabbix 1.8.1 through apt-get.
Compiled 1.8.5 with
./configure --enable-server --with-mysql --with-net-snmp --with-jabber --with-libcurl --enable-agent
Installed the binaries manually from the src/* directories, overwriting the apt-get ones.
Installed the current front-end and changed the zabbix.conf.php to a symbolic link to /etc/zabbix/dbconfig.conf (some weird Ubuntu configuration).
Everything works at this point, with one exception. Web checks do not create Items in the host so that I can create triggers off them.
I thought, "Okay, this must be due to missing db parts, since I didn't upgrade the db at all from 1.8.1's config."
So I dropped the db, re-created it, and executed the .sql files in schema/ and then the data and images sql files in data/.
Everything works again, with the same exception. The web checks still don't create items in the host.
I can add web checks, see them checking, look at the graphs, etc, but no items show up in the items table of the database;
For example:
Am I either missing something, such as a change? I did notice "[ZBX-3414] expressions for triggers with web items are marked as error in trigger wizard", but can't tell if that means that web test items are gone or not.
Anyways... any help would be appreciated.
-Ron
mysql 5.1.41-3ubuntu12.10,
apache 2.2.14-5ubuntu8.4,
Zabbix Server v1.8.5 (revision 19050)
This is pretty much a fresh install, but let me give you some basic steps I did to get to this point.
Installed the system, installed pre-reqs, installed zabbix 1.8.1 through apt-get.
Compiled 1.8.5 with
./configure --enable-server --with-mysql --with-net-snmp --with-jabber --with-libcurl --enable-agent
Installed the binaries manually from the src/* directories, overwriting the apt-get ones.
Installed the current front-end and changed the zabbix.conf.php to a symbolic link to /etc/zabbix/dbconfig.conf (some weird Ubuntu configuration).
Everything works at this point, with one exception. Web checks do not create Items in the host so that I can create triggers off them.
I thought, "Okay, this must be due to missing db parts, since I didn't upgrade the db at all from 1.8.1's config."
So I dropped the db, re-created it, and executed the .sql files in schema/ and then the data and images sql files in data/.
Everything works again, with the same exception. The web checks still don't create items in the host.
I can add web checks, see them checking, look at the graphs, etc, but no items show up in the items table of the database;
For example:
Code:
mysql> select * from httpstep; +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ | httpstepid | httptestid | name | no | url | timeout | posts | required | status_codes | +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ | 1 | 1 | Google | 1 | http://www.google.com | 15 | | | 200 | +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ 1 row in set (0.00 sec) mysql> select * from httpstep; +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ | httpstepid | httptestid | name | no | url | timeout | posts | required | status_codes | +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ | 1 | 1 | Google | 1 | http://www.google.com | 15 | | | 200 | +------------+------------+--------+----+-----------------------+---------+-------+----------+--------------+ 1 row in set (0.00 sec) mysql> select * from items where description like "%Google%"; Empty set (0.02 sec) mysql>
Anyways... any help would be appreciated.
-Ron
Comment