Body: Hi everyone,
I’m experiencing an issue with my Graylog setup after updating to version 6.2.2. Despite updating both the Graylog server and Data Node to the latest version, I still receive the following warnings:
Outdated Version Warning:
You are running an outdated Graylog version (triggered 2 days ago). The most recent stable Graylog version is 6.2.2 (Noir) released at 2025-05-07T00:00:00.000Z. See what’s new in the Open and Operations changelogs!
Data Node Version Mismatch:
You are running at least one Data Node which runs on a different version than your Graylog server. While this might not impose a problem, it is recommended to run Graylog server and Data Nodes on the same version.
Here are the details of my setup:
Graylog Server: graylog/graylog:6.2.2
Data Node: graylog/graylog-datanode:6.2.2
MongoDB: mongo:6.0
All containers are running in the same Docker network (docker-install_graylog). Here are the relevant parts of my docker-compose.yml:
services:
mongodb:
image: "mongo:6.0"
networks:
- graylog
datanode:
image: "graylog/graylog-datanode:6.2.2"
networks:
- graylog
graylog:
image: "graylog/graylog:6.2.2"
networks:
- graylog
I have verified that no other containers are running and that all containers are in the same network. Here are the network details:
Graylog Server IP: 172.18.0.3
Data Node IP: 172.18.0.2
MongoDB IP: 172.18.0.1
Despite this, I still receive the version mismatch warning. Any help or suggestions on how to resolve this issue would be greatly appreciated!
Thank you!