RabbitMQ-故障记录-RabbitMQ-error:unable to connect to node 'rabbit@HAPP11': nodedown
目录 问题 解决方案 实例 验证 问题 重装,安装RabbitServer之后,运行命令提示: error:unable to connect to node 'rabbit@HAPP11': nodedown 解决方案 根据提示, TCP connection succeeded but Erlang distribution failed。 意思是,tcp连接正常,但是Erlang配置错误,由于Erlang是按照cookie识别,所以进行排查。 更正Erlang的cookie Erlang会生成两个cookie文件:C:\Windows\.erlang.cookie 及 C:\用户\计算机用户名\.erlang.cookie。检查两个文件内容是否一致,不一致用其中一个替换另一个即可。 实例 【图:两个.erlang.cookie内容不一致】 验证 修改确认一致之后, 执行rabbitmqctl status命令检查状态。 cmd>rabbitmqctl status 参考资料: RabbitMQ报错Error: unable to connect to node rabbit@xxx: nodedown的解决方式 - 欧神的博客 - CSDN博客 https://blog.csdn.net/u012930316/article/details/76841025 来源: CSDN