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
9 votes
Accepted
How to permanently delete node?
You can use rabbitmqctl forget_cluster_node command to remove a node from cluster.
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: ...
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 ...
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 ...
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 ...
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 ...
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/
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
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 ...
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 ...
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
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 ...
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 = "...
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. ...
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 ...
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 ...
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-...
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. ...
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 ...
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_": ...
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/...
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 ...
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
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 ...
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, [ ...
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 ...
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 ...
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. (...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
rabbitmq × 225ubuntu × 22
linux × 16
docker × 13
kubernetes × 13
amazon-web-services × 12
ssl × 11
haproxy × 9
celery × 9
centos × 7
amazon-ec2 × 7
cluster × 7
message-queuing × 7
erlang × 7
amqp × 7
debian × 5
load-balancing × 5
openstack × 5
networking × 4
monitoring × 4
java × 4
puppet × 4
queue × 4
sensu × 4
nginx × 3