Address already in use (os error 98) #22210
Unanswered
hightwoltt
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Hi @hightwoltt , Can you share your configuration? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When trying to configure Vector, I encounter an error.
2025-01-15T06:32:04.648465Z INFO vector: Vector has started. debug="false" version="0.43.1" arch="x86_64" revision="e30bf1f 2024-12-10 16:14:47.175528383" 2025-01-15T06:32:04.651295Z ERROR vector::internal_events::socket: Error binding socket. error=error creating server listener: Address already in use (os error 98) error_code="socket_bind" error_type="io_failed" stage="receiving" mode=tcp internal_log_rate_limit=true 2025-01-15T06:32:04.651461Z ERROR vector::app: An error occurred that Vector couldn't handle: error creating server listener: Address already in use (os error 98). 2025-01-15T06:32:04.651511Z INFO vector: Vector has stopped.
I can only see this error if I go into the container and type the "Vector" command, when starting the container itself or when trying to debug using
docker logs vector -f
this error is not displayed.Vector runs in a Docker container, which is running in a single instance. There are no more containers or Vector instances on the host.
The container was started using:
docker run -d \ --name vector \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /etc/vector/vector.yaml:/etc/vector/vector.yaml:ro \ timberio/vector:0.43.1-debian \ --config /etc/vector/vector.yaml
I tried reinstalling the container.
Can you tell me how to solve this problem? how do I see what makes Vector think it's already running on the host?
Beta Was this translation helpful? Give feedback.
All reactions