Hi all,
I am trying to create a new Zabbix Proxy server on CentOS7 and I am having problems getting it to start after yum install. when using
I get the following error:


I tried to change the zabbix-proxy.service file to this, per another thread in the forum:
UPDATE: Upon debugging a bit more, I found this gem:
I believe that the proxy is not able to create a PID file... Any ideas on how to resolve?
I am trying to create a new Zabbix Proxy server on CentOS7 and I am having problems getting it to start after yum install. when using
Code:
systemctl start zabbix-proxy
Code:
[root@localhost ~]# systemctl status zabbix-proxy zabbix-proxy.service - Zabbix Proxy Loaded: loaded (/usr/lib/systemd/system/zabbix-proxy.service; enabled) Active: failed (Result: start-limit) since Mon 2015-02-16 12:13:28 EST; 5s ago Process: 11069 ExecStart=/usr/sbin/zabbix_proxy -c /etc/zabbix/zabbix_proxy.conf (code=exited, status=0/SUCCESS) Main PID: 1787 (code=exited, status=1/FAILURE) Feb 16 12:13:28 localhost.localdomain systemd[1]: zabbix-proxy.service never wrote its PID file. Failing. Feb 16 12:13:28 localhost.localdomain systemd[1]: Failed to start Zabbix Proxy. Feb 16 12:13:28 localhost.localdomain systemd[1]: Unit zabbix-proxy.service entered failed state. Feb 16 12:13:28 localhost.localdomain systemd[1]: zabbix-proxy.service holdoff time over, scheduling restart. Feb 16 12:13:28 localhost.localdomain systemd[1]: Stopping Zabbix Proxy... Feb 16 12:13:28 localhost.localdomain systemd[1]: Starting Zabbix Proxy... Feb 16 12:13:28 localhost.localdomain systemd[1]: zabbix-proxy.service start request repeated too quickly...art. Feb 16 12:13:28 localhost.localdomain systemd[1]: Failed to start Zabbix Proxy.


I tried to change the zabbix-proxy.service file to this, per another thread in the forum:
Code:
ExecStart=/usr/sbin/zabbix_proxy -c /etc/zabbix/zabbix_proxy.conf
UPDATE: Upon debugging a bit more, I found this gem:
Code:
Feb 16 12:23:23 localhost.localdomain systemd[1]: PID file /run/zabbix/zabbix_proxy.pid not readable (yet?) afte Feb 16 12:23:23 localhost.localdomain systemd[1]: zabbix-proxy.service never wrote its PID file. Failing. Feb 16 12:23:23 localhost.localdomain systemd[1]: Failed to start Zabbix Proxy. -- Subject: Unit zabbix-proxy.service has failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
Comment