无法执行插件启用命令RabbitMQ

wixjitnu  于 8个月前  发布在  RabbitMQ
关注(0)|答案(1)|浏览(96)

我在Windows 7上安装了Erlang和RabbitMQ。RabbitMQ服务正在运行。但当我试图执行插件启用命令,我得到下面的错误

=SUPERVISOR REPORT==== 9-Jul-2018::14:14:46.134000 ===
    supervisor: {local,'Elixir.Logger.Supervisor'}
    errorContext: start_error

=INFO REPORT==== 9-Jul-2018::14:14:46.149000 ===
    application: logger
    exited: {{shutdown,
                 {failed_to_start_child,'Elixir.Logger.ErrorHandler',noproc}},
             {'Elixir.Logger.App',start,[normal,[]]}}
    type: temporary
Could not start application logger: Logger.App.start(:normal, []) returned an er
ror: shutdown: failed to start child: Logger.ErrorHandler
    ** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
1qczuiv0

1qczuiv01#

您正在使用Erlang 21的3.7.7之前的RabbitMQ版本。这是不支持的,并在这里明确记录:https://www.rabbitmq.com/which-erlang.html
解决方案:升级到RabbitMQ 3.7.7或将Erlang降级到版本20.3。
此外,你可以通过搜索谷歌找到答案,下面的文字:

rabbitmq "Elixir.Logger.ErrorHandler"

相关问题