Created
May 26, 2016 18:08
-
-
Save tetherit/6c042f618bc53e98876e39451fa7dcbd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rabbitmq-server | |
RabbitMQ 3.6.2. Copyright (C) 2007-2016 Pivotal Software, Inc. | |
## ## Licensed under the MPL. See http://www.rabbitmq.com/ | |
## ## | |
########## Logs: /var/log/rabbitmq/[email protected] | |
###### ## /var/log/rabbitmq/[email protected] | |
########## | |
Starting broker... | |
BOOT FAILED | |
=========== | |
Error description: | |
{could_not_start,rabbit, | |
{error, | |
{{shutdown, | |
{failed_to_start_child,rabbit_epmd_monitor, | |
{{badmatch,noport}, | |
[{rabbit_epmd_monitor,init,1, | |
[{file,"src/rabbit_epmd_monitor.erl"},{line,60}]}, | |
{gen_server,init_it,6, | |
[{file,"gen_server.erl"},{line,328}]}, | |
{proc_lib,init_p_do_apply,3, | |
[{file,"proc_lib.erl"},{line,240}]}]}}}, | |
{child,undefined,rabbit_epmd_monitor_sup, | |
{rabbit_restartable_sup,start_link, | |
[rabbit_epmd_monitor_sup, | |
{rabbit_epmd_monitor,start_link,[]}, | |
false]}, | |
transient,infinity,supervisor, | |
[rabbit_restartable_sup]}}}} | |
Log files (may contain more information): | |
/var/log/rabbitmq/[email protected] | |
/var/log/rabbitmq/[email protected] | |
{"init terminating in do_boot",{could_not_start,rabbit,{error,{{shutdown,{failed_to_start_child,rabbit_epmd_monitor,{{badmatch,noport},[{rabbit_epmd_monitor,init,1,[{file,"src/rabbit_epmd_monitor.erl"},{line,60}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,328}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},{child,undefined,rabbit_epmd_monitor_sup,{rabbit_restartable_sup,start_link,[rabbit_epmd_monitor_sup,{rabbit_epmd_monitor,start_link,[]},false]},transient,infinity,supervisor,[rabbit_restartable_sup]}}}}} |
stumbled upon this myself.
Turns out rabbit resolves hosts by short names instead of FQDN by default, so check your /etc/hosts and DNS.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you find the solution to this issue?