cannot start server when node name different then hostname #5556
-
|
I have configured a server with multiple IPv6 addresses only and each IPv6 address has different DNS names. Example, in my case host have multiple DNS name line
I want start CouchDB as node I have configured /etc/rabbitmq/rabbitmq-env.conf But when I wat start the server I got an error in the log I have fond emd and rabbitmq do not try to resolve AAAA DNS records. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
|
If I add record into |
Beta Was this translation helpful? Give feedback.
-
|
RabbitMQ nodes must be able to resolve their own hostname, this has been a documented requirement for many years.
|
Beta Was this translation helpful? Give feedback.
-
|
You have a complicated setup. Please be sure to carefully read the docs - https://www.rabbitmq.com/networking.html#distribution-ipv6 You probably have to set
Be sure to kill all NOTE: you might be able to use the hostname instead of the IPv6 address. You'll have to test it out yourself. |
Beta Was this translation helpful? Give feedback.
You have a complicated setup. Please be sure to carefully read the docs - https://www.rabbitmq.com/networking.html#distribution-ipv6
You probably have to set
ERL_EPMD_ADDRESSin/etc/rabbitmq/rabbitmq-env.confas well as the options listed here:Create the
/etc/rabbitmq/erl_inetrcfile with this content:Ensure your
/etc/rabbitmq/rabbitmq-env.conffile contains the following (note that theRABBITMQ_prefix is not required in this file):Be sure to kill all
erlandepmdprocesses before restarting RabbitMQ.…