- SELinux
link
Você o desativou - OK
- Firewall
Tente desativar o firewall também
- Configuração do servidor frontend / zabbix do PHP
O problema comum é quando o zabbix_server está escutando somente no IP, não no host local (netstat -tanp | grep: 10051), mas o frontend está configurado para localhost: 10051, teste e configure o servidor frontend / zabbix corretamente
# grep ZBX_SERVER /etc/zabbix/web/zabbix.conf.php
$ZBX_SERVER = 'localhost';
$ZBX_SERVER_PORT = '10051';
# telnet localhost 10051
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
Se o servidor está escutando em todas as interfaces (localhost incluído), então eu posso usar também localhost na configuração do frontend:
# netstat -tanp | grep :10051 | grep LISTEN
tcp 0 0 0.0.0.0:10051 0.0.0.0:* LISTEN 825/zabbix_server
tcp6 0 0 :::10051 :::* LISTEN 825/zabbix_server