Replies: 1 comment 2 replies
-
@nuo010 the line you are looking for is/says RabbitMQ |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
docker容器创建命令
docker run -d --name rabbitmq --restart=always -e RABBITMQ_DEFAULT_USER=rabbit@admin -e RABBITMQ_DEFAULT_PASS=rabbit@pwd123456 --network host rabbitmq:3.12.13-management
开启这4个插件报错,开启不起来,但是换到centos上就正常了,不知道为什么
rabbitmq-plugins enable rabbitmq_management
rabbitmq-plugins enable rabbitmq_web_mqtt
rabbitmq-plugins enable rabbitmq_web_stomp rabbitmq_web_stomp_examples
rabbitmq-plugins enable rabbitmq_delayed_message_exchange
报错内容
** (CaseClauseError) no case clause matching: {:could_not_start, :rabbitmq_mqtt, {:rabbitmq_mqtt, {{:shutdown, {:failed_to_start_child, :"rabbit_mqtt_listener_sup_:::1883", {:shutdown, {:failed_to_start_child, {:ranch_embedded_sup, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}}, {:shutdown, {:failed_to_start_child, {:ranch_listener_sup, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}}, {:shutdown, {:failed_to_start_child, :ranch_acceptors_sup, {:listen_error, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}, :eaddrinuse}}}}}}}}}, {:rabbit_mqtt, :start, [:normal, []]}}}}
(rabbitmqctl 3.12.13) lib/rabbitmq/cli/plugins/plugins_helpers.ex:215: RabbitMQ.CLI.Plugins.Helpers.update_enabled_plugins/2
(rabbitmqctl 3.12.13) lib/rabbitmq/cli/plugins/plugins_helpers.ex:112: RabbitMQ.CLI.Plugins.Helpers.update_enabled_plugins/4
(rabbitmqctl 3.12.13) lib/rabbitmq/cli/plugins/commands/enable_command.ex:127: anonymous fn/6 in RabbitMQ.CLI.Plugins.Commands.EnableCommand.do_run/2
(elixir 1.15.4) lib/stream.ex:1530: anonymous fn/2 in Stream.iterate/2
(elixir 1.15.4) lib/stream.ex:1757: Stream.do_unfold/4
(elixir 1.15.4) lib/stream.ex:1828: Enumerable.Stream.do_each/4
(elixir 1.15.4) lib/stream.ex:1052: Stream.do_transform_inner_enum/7
(elixir 1.15.4) lib/stream.ex:1828: Enumerable.Stream.do_each/4
{:case_clause, {:could_not_start, :rabbitmq_mqtt, {:rabbitmq_mqtt, {{:shutdown, {:failed_to_start_child, :"rabbit_mqtt_listener_sup_:::1883", {:shutdown, {:failed_to_start_child, {:ranch_embedded_sup, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}}, {:shutdown, {:failed_to_start_child, {:ranch_listener_sup, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}}, {:shutdown, {:failed_to_start_child, :ranch_acceptors_sup, {:listen_error, {:acceptor, {0, 0, 0, 0, 0, 0, 0, 0}, 1883}, :eaddrinuse}}}}}}}}}, {:rabbit_mqtt, :start, [:normal, []]}}}}}
Beta Was this translation helpful? Give feedback.
All reactions