这种情况,看了数据库配置没有问题,直接在命令里输入:
**service httpd start
systemctl enable httpd.service
cd /usr/local/zabbix/sbin/
./zabbix_server**
这样就能解决无缘无故服务端不运行了:
2 方法2
有可能是SELINUX没有关闭导致的
临时关闭:
[root@localhost ~]# getenforce
Enforcing
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
永久关闭:
[root@localhost ~]# vim /etc/sysconfig/selinux
SELINUX=enforcing 改为 SELINUX=disabled
重启服务reboot