RabbitMQ shutdown on noproc reason #3902
Replies: 5 comments 19 replies
-
|
You can ignore it. This will be gone once |
Beta Was this translation helpful? Give feedback.
-
|
But the port 15672 is not listening when I run the rabbitmq-diagnostics status command and so for same, I couldn't able to access my management dashboard at localhost:15672 |
Beta Was this translation helpful? Give feedback.
-
|
I will convert this issue to a GitHub discussion. Currently GitHub will automatically close and lock the issue even though your question will be transferred and responded to elsewhere. This is to let you know that we do not intend to ignore this but this is how the current GitHub conversion mechanism makes it seem for the users :( |
Beta Was this translation helpful? Give feedback.
-
|
@aravindchidambaram the exception you have shared happened when a connection was closed. There is also evidence of a connection being accepted at the end of the log. We have no evidence of this exception being connected to any |
Beta Was this translation helpful? Give feedback.
-
|
I see this hasn't been officially answered yet. I was experiencing this very error message yesterday on our development server and after a change in a custom library, the error stopped happening. The problem was frequent, yet intermittent. When it occurred, RabbitMQ's log had similar entries. TL;DR: Versions: We have a more developer-friendly wrapper library over the RabbitMQ.Client, which is built to add logging and be a little more friendly to developers when consuming / publishing to RabbitMQ. The issue for me was that this wrapper library was clearing connection / channel objects prior to creating a RabbitMQ consumer. Ordinarily, this should be a problem, since it the first time it is run, there shouldn't be any connection / channels present yet. But, in an application using this library, it was making both channel / connections in another thread. The wrapper library does not use static functions or singletons, so I don't know why this would happen (I haven't checked the RabbitMQ.Client source code yet), but taking out this connection clearing routine fixed the issue. There also are not lingering connections either, so it turned out to be entirely unnecessary. Error log |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the RabbitMQ Server 3.9.5
and Erlang 24
Beta Was this translation helpful? Give feedback.
All reactions