User Tools

Site Tools


apps:zabbix:proxy
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


apps:zabbix:proxy [2020-05-12 19:21] (current) – created Manuel Frei
Line 1: Line 1:
 +====== Zabbix Proxy ======
 +
 +
 +===== SQLite3 DB Setup (Debian) =====
 +
 +Create the directory for the database.
 +<code>
 +mkdir -p /var/lib/zabbix/
 +chown zabbix:zabbix /var/lib/zabbix/
 +</code>
 +
 +Create the database and load the proxy schema.
 +<code>
 +sqlite3 /var/lib/zabbix/zabbix_proxy.db < <(zcat /usr/share/doc/zabbix-proxy-sqlite3/schema.sql.gz)
 +chown zabbix:zabbix /var/lib/zabbix/zabbix_proxy.db
 +</code>
 +
 +Edit the proxy configuration.
 +<code>
 +vi /etc/zabbix/zabbix_proxy.conf
 +</code>
 +
 +Set the path to the database.
 +<code>
 +DBName=/var/lib/zabbix/zabbix_proxy.db
 +</code>
 +
 +Restart the proxy.
 +<code>
 +systemctl restart zabbix-proxy.service
 +</code>
  
apps/zabbix/proxy.txt · Last modified: 2020-05-12 19:21 by Manuel Frei