From ddc87decd41cb1cf1e1c1399c227ec723f714d87 Mon Sep 17 00:00:00 2001 From: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> Date: Fri, 17 Apr 2026 14:11:23 -0300 Subject: [PATCH 1/3] Fix reference link text to nxagentd.conf in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8e400a..b26b596 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Minimal required configuration: Edit `conf/agent/nxagentd.conf` to configure the monitoring agent. -Reference: [netxmsd.conf](https://netxms.org/documentation/adminguide/appendix.html#agent-configuration-file-nxagentd-conf). +Reference: [nxagentd.conf](https://netxms.org/documentation/adminguide/appendix.html#agent-configuration-file-nxagentd-conf). Minimal required configuration: From a9366271be3dfcb90d46edd2e1b13aac05f18e46 Mon Sep 17 00:00:00 2001 From: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> Date: Fri, 17 Apr 2026 14:22:13 -0300 Subject: [PATCH 2/3] Update README with specific log command for agents --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b26b596..8993476 100644 --- a/README.md +++ b/README.md @@ -220,5 +220,5 @@ The build system uses APT package pinning to ensure version consistency: **Agent connection problems:** - Check network connectivity between agent and server -- Review agent logs for connection errors +- Review agent logs for connection errors: `docker compose logs agent` - Verify server address in agent configuration From c63923c1530caa95d461bb8a4aa30a00e2642d30 Mon Sep 17 00:00:00 2001 From: Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> Date: Mon, 20 Apr 2026 14:52:03 -0300 Subject: [PATCH 3/3] Update port mappings in compose.yaml --- deployment-example/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment-example/compose.yaml b/deployment-example/compose.yaml index 180a169..f1fb953 100644 --- a/deployment-example/compose.yaml +++ b/deployment-example/compose.yaml @@ -29,8 +29,8 @@ services: - ./conf/server/etc-netxms:/etc/netxms - server-var:/var/lib/netxms ports: - - 48920:4701 - - 48921:4703 + - 4701:4701 + - 4703:4703 agent: image: ghcr.io/netxms/agent:${NETXMS_VERSION:?NETXMS_VERSION environment variable is required}