Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
9 votes

Can I change rabbitmq node name?

The following is what should be in the /etc/rabbitmq/rabbitmq-env.conf file (create it): NODENAME=rabbitNodeName@myServerName Next restart RabbitMQ: sudo service rabbitmq-server restart
Eduardo Cuomo's user avatar
9 votes
Accepted

How to permanently delete node?

You can use rabbitmqctl forget_cluster_node command to remove a node from cluster.
Artem's user avatar
  • 106
8 votes

How to verify a RabbitMQ user password?

sudo rabbitmqctl authenticate_user <username> <password> If the password is appropriate it shows: Authenticating user "username" Success If the password is wrong it shows the below: ...
Sandy's user avatar
  • 201
8 votes

How to permanently delete node?

You first must stop the node you wish to remove: rabbitmqctl -n rabbit@node3 stop_app Then from one of the other nodes you can then use the forget_cluster_node command: rabbitmqctl ...
Dbl0McJim's user avatar
4 votes

Heartbeat value configuration for RabbitMQ

The information in the answer is no longer correct. RabbitMQ now has configurable setting for heartbeat both from client and from the server. The lower value is taken during connection negotiation, by ...
ikyuchukov's user avatar
3 votes

Rabbitmq -> epmd reports: node 'rabbit' not running at all?

In my case it was a problem with the service not started properly. After trying the accepted solution I just did an additional service rabbitmqserver restart and it worked. After that, the second ...
Horsty's user avatar
  • 171
3 votes

How to verify a RabbitMQ user password?

There is rabbitmqctl authenticate_user rabbitmqadmin can be used if the user has the management tag (which can be added temporarily) Alternative authN backends have more options: LDAP tooling for the ...
Michael Klishin's user avatar
3 votes
Accepted

Does Amazon MQ support rabbitmq-consistent-hash-exchange

Yes, this is supported on Amazon MQ as of July 6, 2021: https://aws.amazon.com/about-aws/whats-new/2021/07/amazon-mq-for-rabbitmq-now-supports-the-consistent-hash-exchange-type/
TrevorAWS's user avatar
2 votes

How to change listening interface of RabbitMQ's epmd (port 4369)

Create /etc/rabbitmq/rabbitmq-env.conf file and add: export ERL_EPMD_ADDRESS=127.0.0.1 more info
littleguga's user avatar
2 votes

RabbitMQ Management console not working

For the sake of other people with the same problem: In my case, this solved my issue: Sometimes, on Windows, it's not enough to do just rabbitmq-plugins enable rabbitmq_management. UI is accessible ...
OhadR's user avatar
  • 119
2 votes

RabbitMQ appearing to crash on startup

I fixed it with: sudo killall rabbitmq-server sudo killall beam.smp sudo rm -Rf /var/lib/rabbitmq/mnesia/* sudo service rabbitmq-server start I also had to re-add my user configurations, but ...
Cerin's user avatar
  • 3,950
2 votes
Accepted

Reverse Proxy For Rabbitmq?

The same as most other reverse proxy set ups single point of TLS termination load balancing HA fail over only exposing the minimal ports required to the outside world
hardillb's user avatar
  • 2,136
2 votes

rabbitmq kubernetes with NFS mount

This is what i tried to reproduce this issue. I have installed kubernetes cluster using kubeadm on redhat 7 and below is the cluster, node details. ENVIRONMENT DETAILS: [root@master tmp]# kubectl ...
JPNagarajan's user avatar
2 votes

Can the internal hostname be set for an ECS container on AWSVPC

I got this working by using EFS for mnesia, setting RABBITMQ_NODENAME to "rabbit@localhost", and specifying the RABBITMQ_MNESIA_DIR. environment = [ { name = "...
odie5533's user avatar
  • 495
2 votes

failed_to_parse_configuration_file on rabbitmq

For me, the issue was that the file was named with the ".config" suffix. ".config" is for the advanced configuration. Modifying it to ".conf" resolved the issue for me. ...
Tomer's user avatar
  • 121
2 votes
Accepted

RabbitMQ quorum queues - have node automatically rejoin

The RabbitMQ team highly recommends the use of the official Kubernetes operator - https://www.rabbitmq.com/kubernetes/operator/operator-overview.html Aside from that, here's what the local k8s expert ...
Luke Bakken's user avatar
1 vote

Persistent storage in EKS cluster with multiple availability zones

The solution to this problem is using EFS instead of EBS, this will ensure that when a node dies, new pods will be able to connect to the same storage. EFS is replicated across multiple availability ...
user1007727's user avatar
1 vote

Connect to docker-container: Connection reset by peer

I had the same problem. Solution: Default User: guest (and password: guest) only works for localhost by default. Adding the following environment variables changing the default user to the docker-...
Aadithya V's user avatar
1 vote

RabbitMQ versionning the rabbitmq.config

OK. It seem to be easier to keep the config in the configMap at first, but if changes need to be done, both update the configMap and along with that, use the API to update live. It is that simple. ...
yield's user avatar
  • 858
1 vote

RabbitMQ appearing to crash on startup

That does not appear to be a "crash"... so much as a graceful shutdown due to a problem. Apparently, the service timed out. I am assuming this is because it could not connect to the remote messaging ...
TheCompWiz's user avatar
  • 7,439
1 vote
Accepted

RabbitMQ : configuration file not found

I've looked up on Google how to use the configuration file of RabbitMQ and found this official article. According to that article, the directive should be prefixed with "RABBITMQ_": ...
Itai Ganot's user avatar
1 vote

RabbitMQ management console not accessible on Windows Server 2016 http://localhost:15672/

Have you enabled web management plugin for RabbitMQ? Also you can check this question if you encounter any problems related to enabling management plugin - https://stackoverflow.com/questions/...
Martynas's user avatar
  • 1,287
1 vote
Accepted

Why doesn't rpcinfo command in linux show rabbitmq?

RPC stands for remote procedure call. The main problem with it is that there are too many protocols that called RPC. The one which is used by NIS and NFS is know as ONC RPC (or SUN RPC). Openstack ...
kofemann's user avatar
  • 5,151
1 vote
Accepted

Which Prometheus RabbitMQ Exporter to choose for which RabbitMQ version? How to automate this dependency installation for any version?

prometheus_rabbitmq_exporter supports RabbitMQ from version 3.6 More details about the support: https://github.com/deadtrickster/prometheus_rabbitmq_exporter/issues/65
laimison's user avatar
  • 649
1 vote
Accepted

Why does Erlang runtime (or RabbitMQ) listen on a random UDP port?

Seems to me it's a port bound by the syslog_logger module, coming from this RabbitMQ dependency: https://github.com/schlagert/syslog Looks like it is by default is started on the RabbitMQ node and ...
Lajos Gerecs's user avatar
1 vote

Unable to stop RabbitMQ from listening on port 25672 on all interfaces

I found it in the documentation in five seconds after searching for rabbitmq port... listeners.tcp.1 = 127.0.0.1:5672 listeners.tcp.2 = ::1:5672 Or in the classic config format: [ {rabbit, [ ...
Michael Hampton's user avatar
1 vote

RabbitMQ: start_app always fails, service restart is OK?

So after much digging I've found the answer. The guys who did the initial setup but the management port on 35672, it appears that this is reserved (35672-35680). It seems to be that as the service ...
Dave Shaw's user avatar
1 vote

Rabbitmq server randomly times out during server start

The RabbitMQ team monitors the rabbitmq-users mailing list and only sometimes answers questions on StackOverflow. You are using an out-of-date and unsupported version of RabbitMQ. Since then there ...
Luke Bakken's user avatar
1 vote

Docker-Swarm with RabbitMQ Autocluster

Yes, you can setup RabbitMQ cluster as a single Docker Swarm service. No need to use GlusterFS for replication of data between all the nodes. Each RabbitMQ replica will store its data separately. (...
rokpoto.com's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible