Below are the container logs:
{"build_git_commit":"5a3991d","build_go_version":"go1.22.10","build_image_tag":"v1.28.2","build_wv_version":"1.28.2","level":"info","msg":"attempting to join","remoteNodes":["192.168.176.2:8300"],"time":"2024-12-24T01:53:10Z"}
{"build_git_commit":"5a3991d","build_go_version":"go1.22.10","build_image_tag":"v1.28.2","build_wv_version":"1.28.2","level":"info","msg":"attempted to join and failed","remoteNode":"192.168.176.2:8300","status":8,"time":"2024-12-24T01:53:10Z"}
{"build_git_commit":"5a3991d","build_go_version":"go1.22.10","build_image_tag":"v1.28.2","build_wv_version":"1.28.2","level":"info","msg":"attempting to join","remoteNodes":["192.168.176.2:8300"],"time":"2024-12-24T01:53:11Z"}
{"build_git_commit":"5a3991d","build_go_version":"go1.22.10","build_image_tag":"v1.28.2","build_wv_version":"1.28.2","level":"info","msg":"attempted to join and failed","remoteNode":"192.168.176.2:8300","status":8,"time":"2024-12-24T01:53:11Z"}
updated yml file:
version: '3.9'
services:
weaviate:
container_name: weaviate
command:
- --host
- 0.0.0.0
- --port
- '8080'
- --scheme
- http
image: cr.weaviate.io/semitechnologies/weaviate:1.28.2
ports:
- 8080:8080
- 50051:50051
volumes:
- weaviate_data:/var/lib/weaviate
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
ENABLE_API_BASED_MODULES: 'true'
CLUSTER_HOSTNAME: "node1"
CLUSTER_GOSSIP_BIND_PORT: "7102"
CLUSTER_DATA_BIND_PORT: "7103"
volumes:
weaviate_data:
My Weaviate Instance is not able to connect to remoteNode for some reason.
I also tried to ping the remoteNode explicitly from within the container and it was working. But for some reason the instance is not able to connect to the remoteNode
Also when i try to access the remoteNode from the container.
I dont face any issue.
/ # nc -zv 192.168.176.2 8300
192.168.176.2 (192.168.176.2:8300) open