From 4f0a42be351f620d2bf2fe6ababcde5a756df166 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Mon, 23 Dec 2024 23:05:30 +0900 Subject: [PATCH] Added missing Zabbix agent 2 status port --- .env | 1 + Dockerfiles/agent2/ubuntu/Dockerfile | 2 +- Dockerfiles/proxy-mysql/ubuntu/Dockerfile | 1 - compose_zabbix_components.yaml | 4 ++++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.env b/.env index 7aee3112d..90f9f27e4 100644 --- a/.env +++ b/.env @@ -43,6 +43,7 @@ ZABBIX_WEB_APACHE_HTTP_PORT=8081 ZABBIX_WEB_APACHE_HTTPS_PORT=8443 ZABBIX_AGENT_PORT=10050 ZABBIX_AGENT2_PORT=10060 +ZABBIX_AGENT2_STATUS_PORT=31999 ZABBIX_JAVA_GATEWAY_PORT=10052 ZABBIX_SNMPTRAPS_PORT=162 diff --git a/Dockerfiles/agent2/ubuntu/Dockerfile b/Dockerfiles/agent2/ubuntu/Dockerfile index ef20315e2..6f02be09f 100644 --- a/Dockerfiles/agent2/ubuntu/Dockerfile +++ b/Dockerfiles/agent2/ubuntu/Dockerfile @@ -71,7 +71,7 @@ RUN --mount=type=cache,target=/var/lib/apt/,sharing=locked \ apt-get -y autoremove && \ apt-get -y clean -EXPOSE 10050/TCP +EXPOSE 10050/TCP 31999/TCP WORKDIR /var/lib/zabbix diff --git a/Dockerfiles/proxy-mysql/ubuntu/Dockerfile b/Dockerfiles/proxy-mysql/ubuntu/Dockerfile index 291ba1f2a..9f8d92a8d 100644 --- a/Dockerfiles/proxy-mysql/ubuntu/Dockerfile +++ b/Dockerfiles/proxy-mysql/ubuntu/Dockerfile @@ -2,7 +2,6 @@ ARG MAJOR_VERSION=5.0 ARG ZBX_VERSION=${MAJOR_VERSION}.45 ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ubuntu-${ZBX_VERSION} -ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git FROM ${BUILD_BASE_IMAGE} AS builder diff --git a/compose_zabbix_components.yaml b/compose_zabbix_components.yaml index 58eafe0f7..4abd6aa4a 100644 --- a/compose_zabbix_components.yaml +++ b/compose_zabbix_components.yaml @@ -433,6 +433,10 @@ services: published: "${ZABBIX_AGENT2_PORT}" protocol: tcp app_protocol: zabbix-agent + - name: zabbix-agent-status + target: 31999 + published: "${ZABBIX_AGENT2_STATUS_PORT}" + protocol: tcp restart: "${RESTART_POLICY}" attach: false volumes: