Hello All-
I am trying to install RabbitMQ on Windows 10 box with the following installs:
otp_win64_23.2.exe
rabbitmq-server-3.8.10.exe
I ran both executables as Administrator and accepted defaults for install dirs. After starting the windows service I see this error in the rabbit@<hostname>.log file.
2021-01-22 13:44:05.661 [info] <0.541.0> Ready to start client connection listeners
2021-01-22 13:44:26.664 [error] <0.541.0>
2021-01-22 13:44:26.664 [error] <0.541.0> BOOT FAILED
2021-01-22 13:44:26.664 [error] <0.541.0> ===========
2021-01-22 13:44:26.664 [error] <0.541.0> Error during startup: {error,no_epmd_port}
Here is results of rabbitmqctl.bat status
Error: unable to perform an operation on node 'rabbit@<hostname>'. Please see diagnostics information and suggestions below.
Most common reasons for this are:
* Target node is unreachable (e.g. due to hostname resolution, TCP connection or firewall issues)
* CLI tool fails to authenticate with the server (e.g. due to CLI tool's Erlang cookie not matching that of the server)
* Target node is not running
In addition to the diagnostics info below:
* Consult server logs on node rabbit@<hostname>
* If target node is configured to use long node names, don't forget to use --longnames with CLI tools
DIAGNOSTICS
===========
attempted to contact: ['rabbit@<hostname>]
rabbit@<hostname>:
* unable to connect to epmd (port 4369) on <hostname>: timeout (timed out)
Current node details:
* node name: 'rabbitmqcli-835-rabbit@<hostname>'
* effective user's home directory: C:\Users\<username>
* Erlang cookie hash: Vv/eH02g0K5UQUGukSwc3w==
It looks like there is a listener on port 4369 and I checked to make sure firewall is not blocking port. I also reinstalled Erlang and RabbitMQ twice as that was the solutions proposed in cases with similar issues.
C:\Program Files\RabbitMQ Server\rabbitmq_server-3.8.10\sbin>netstat -a | grep 4369
Not sure what else to try. Looking for suggestions.
Thanks in advanced.
-Eric