Ad Widget

Collapse

Java gateway connectivity issue with 7.0.23

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jonathont
    Junior Member
    • Feb 2026
    • 1

    #1

    Java gateway connectivity issue with 7.0.23

    Hi,

    When we move from version 7.0.22 to 7.0.23 the Java Gateway stops being able to reach our RMI endpoints with errors similar to this:

    Code:
    2026-02-11 12:52:28.490 [pool-2-thread-1] WARN  com.zabbix.gateway.SocketProcessor - error processing request, item "jmx["java.lang:type=Threading","PeakThreadCount"]" failed: SSL peer shut down incorrectly: service:jmx:rmi:///jndi/rmi://server_name_here:1234/jmxrmi
    We are using the based container images and the same happens if I switch from Alpine to Ubuntu. If I change the tag back to 7.0.22 the issue resolves itself leading me to suspect something change in 7.0.23 that I didn't see in the release notes. We are using a PKCS12 cert that is shared between the gateway and our endpoints. It's using a 2048-bit self-signed certificate.

    Anyone else experiencing this?

    compose file:
    Code:
      zabbix-java-gateway:
        image: zabbix/zabbix-java-gateway:ubuntu-7.0-latest
        container_name: zabbix-java-gateway
        restart: unless-stopped
        privileged: true
        environment:
          TZ: "America/Los_Angeles"
          ZBX_PROPERTIES_FILE: /etc/zabbix/java-gateway.properties
        volumes:
          - /etc/localtime:/etc/localtime:ro
          - /opt/zabbix/java-gateway/java-gateway.properties:/etc/zabbix/java-gateway.properties
          - /opt/zabbix/java-gateway/jmx-truststore.p12:/etc/zabbix/jmx-truststore.p12
        network_mode: host
        depends_on:
          - zabbix-db
          - zabbix-server
Working...