I am following "A cluster on a single machine" explained in https://www.rabbitmq.com/clustering.html but it is not working as it is. I am using ubuntu 14.04 64 bit.
root@sunny-workstation:~# RABBITMQ_NODE_PORT=5673 RABBITMQ_SERVER_START_ARGS="-
rabbitmq_management listener [{port,15673}]" RABBITMQ_NODENAME=hare rabbitmq-server &
[1] 17990
root@sunny-workstation:~#
RabbitMQ 3.2.4. Copyright (C) 2007-2013 GoPivotal, Inc.
## ## Licensed under the MPL. See http://www.rabbitmq.com/
## ##
########## Logs: /var/log/rabbitmq/hare.log
###### ## /var/log/rabbitmq/hare-sasl.log
##########
Starting broker...
BOOT FAILED
===========
Error description:
{could_not_start,rabbitmq_stomp,
{{shutdown,
{failed_to_start_child,'rabbit_stomp_listener_sup_:::61613',
{shutdown,
{failed_to_start_child,tcp_listener,
{cannot_listen,{0,0,0,0,0,0,0,0},61613,eaddrinuse}}}}},
{rabbit_stomp,start,[normal,[]]}}}
Above error indicates that 61613 address already in use. Stomp is listening on 61613 port. I am exploring how to change/define stomp listener port while creating a new node. Please help if somebody already know solution.