-
Problem report
-
Resolution: Fixed
-
Trivial
-
6.4.5
-
None
-
zabbix 6.4.5 postgresql server with zabbix proxies sqlite3
-
S2401-2
-
1.5
Steps to reproduce:
Result:
```
from the database. status 1 = disabled 0 = enabled
zabbix=# select hostid,name,status from httptest where hostid=61787 order by hostid;
hostid | name | status
------{}++{}----------------------{}{}------
61787 | Check API Responsiveness | 1
(1 row)
```
from the proxy host that hostid 61787 was assigned to
```
sqlite3 /ebs/var/lib/sqlite/zabbix.db
SQLite version 3.7.17 2013-05-20 00:56:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select hostid,name,status from httptest where hostid=61787 order by hostid;
61787|Check API Responsiveness|0
```
Expected:
The proxy should be getting the correct status on the httptest items. In 6.0.4, the proxies only received hte httptest records it was to run.
- causes
-
ZBX-24161 Proxies need to be in 6.4.12, no compatibility with oldes versions
- Closed