Hi,
I'm new to Zabbix and testing it with docker (and I didn't find any solution here in the forum, maybe I'm doing something wrong)
my config (docker-compose)
Zabbix is working (behind an Apache reverse proxy), I can monitor the Zabbix host.
I setup 2 new additional hosts for simple HTTP/HTTPS/SMTP (added template to the new hosts) monitoring but the hosts are always marked as down. Ping monitoring is working (host is up).
What is the issue with HTTPS and SMTP? Both hosts do not have an agent, shouldn't be necessary.
Any ideas?
I'm new to Zabbix and testing it with docker (and I didn't find any solution here in the forum, maybe I'm doing something wrong)
my config (docker-compose)
Code:
zabbix: container_name: zabbix depends_on: - sql - mail - zabbix-server environment: - DB_SERVER_HOST=sql - MYSQL_USER=xxx - MYSQL_PASSWORD=xxx - PHP_TZ=Europe/Vienna - ZBX_SERVER_NAME=xxx.net Zabbix hostname: xxx.net image: zabbix/zabbix-web-apache-mysql:latest networks: - sql restart: always volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro zabbix-agent: container_name: zabbix-agent depends_on: - sql - mail - zabbix-server environment: - ZBX_HOSTNAME=zabbix-server image: zabbix/zabbix-agent:latest networks: - sql privileged: true restart: always volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro zabbix-server: container_name: zabbix-server depends_on: - sql - mail environment: - DB_SERVER_HOST=sql - MYSQL_USER=xxx - MYSQL_PASSWORD=xxx hostname: zabbix-server image: zabbix/zabbix-server-mysql:latest networks: - sql restart: always volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro
I setup 2 new additional hosts for simple HTTP/HTTPS/SMTP (added template to the new hosts) monitoring but the hosts are always marked as down. Ping monitoring is working (host is up).
What is the issue with HTTPS and SMTP? Both hosts do not have an agent, shouldn't be necessary.
Any ideas?
Comment