Configure Zabbix Server
Details on configuring Zabbix Server on OpenWrt, and an example configuration file.
Update zabbix_server.conf as appropriate. For example (comments trimmed;
see /rom/etc/zabbix_server.conf to see an unmodified config file):
# This is a configuration file for Zabbix server daemon
# To get more information about Zabbix, visit https://www.zabbix.com
PidFile=/run/zabbix-server/zabbix_server.pid
LogType=system
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=<your-db-password>
Timeout=4
LogSlowQueries=3000
TmpDir=/tmp
StatsAllowedIP=127.0.0.1
TLSCAFile=/path/to/your/ca-certificate.pem
TLSCertFile=/path/to/your/server-certificate.pem
TLSKeyFile=/path/to/your/server-key.pem
EnableGlobalScripts=0
Start the Zabbix Server
service zabbix_server start