RabbitMQ: Restarted erlang machine. #3840
-
OS: Server 2019 issue: noticed that the node uptime on the management gui will so that the node was only up for a few hours, but the server has not been restarted. Looking at the event viewer logs, I found this "RabbitMQ: Restarted erlang machine." RabbitMQ version: 3.9.8 Additionally, this is a fresh install of the RabbitMQ with these newer servers. Did not experience this issue with the previous ones, additionally do not seem to be experiencing this with my test server (which sits in QA and is a single server and not in a cluster). I have attached a couple of screenshots to hopefully share what I am seeing. I'm hoping that somebody could point me in the right direction to resolve the issue as Google has failed me. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This comes from the program that runs the Erlang VM (and thus RabbitMQ) as a Windows service: https://github.com/erlang/otp/blob/master/erts/etc/win32/erlsrv/erlsrv_service.c#L911 It appears that RabbitMQ/Erlang on your server is in a restart loop. I've never seen this. You may get some answers in the log files at All I can suggest is uninstall RabbitMQ and Erlang, and re-install using the latest versions of each - RabbitMQ 3.9.11 and Erlang 24.1.7 |
Beta Was this translation helpful? Give feedback.
This comes from the program that runs the Erlang VM (and thus RabbitMQ) as a Windows service:
https://github.com/erlang/otp/blob/master/erts/etc/win32/erlsrv/erlsrv_service.c#L911
It appears that RabbitMQ/Erlang on your server is in a restart loop. I've never seen this. You may get some answers in the log files at
%AppData%\RabbitMQ\log
. If you'd like to compress them and attach them here I'll take a look.All I can suggest is uninstall RabbitMQ and Erlang, and re-install using the latest versions of each - Rab…