How to reset user for rabbitmq management

You can access the user-management with rabbitmqctl and use the command: add_user {username} {password} or more preferably maybe edit an existing user, or set the permissions for the new user with: set_permissions [-p vhostpath] {user} {conf} {write} {read} For example use the following commands: (it is important to perform these three steps even when creating … Read more

What are the limits of messages, queues and exchanges?

Theoretically anything can be stored/sent as a message. You actually don’t want to store anything on the queues. The system works most efficiently if the queues are empty most of the time. You can send anything you want to the queue with two preconditions: The thing you are sending can be converted to and from … Read more

Spring AMQP + RabbitMQ 3.3.5 ACCESS_REFUSED – Login was refused using authentication mechanism PLAIN

I am sure what Artem Bilan has explained here might be one of the reasons for this error: Caused by: com.rabbitmq.client.AuthenticationFailureException: ACCESS_REFUSED – Login was refused using authentication mechanism PLAIN. For details see the but the solution for me was that I logged in to rabbitMQ admin page (http://localhost:15672/#/users) with the default user name and … Read more

Is it possible to view RabbitMQ message contents directly from the command line?

You should enable the management plugin. rabbitmq-plugins enable rabbitmq_management See here: http://www.rabbitmq.com/plugins.html And here for the specifics of management. http://www.rabbitmq.com/management.html Finally once set up you will need to follow the instructions below to install and use the rabbitmqadmin tool. Which can be used to fully interact with the system. http://www.rabbitmq.com/management-cli.html For example: rabbitmqadmin get queue=<QueueName> … Read more

What ports does RabbitMQ use?

PORT 4369: Erlang makes use of a Port Mapper Daemon (epmd) for resolution of node names in a cluster. Nodes must be able to reach each other and the port mapper daemon for clustering to work. PORT 35197 set by inet_dist_listen_min/max Firewalls must permit traffic in this range to pass between clustered nodes RabbitMQ Management … Read more

Delete all the queues from RabbitMQ?

First, list your queues: rabbitmqadmin list queues name Then from the list, you’ll need to manually delete them one by one: rabbitmqadmin delete queue name=”queuename” Because of the output format, doesn’t appear you can grep the response from list queues. Alternatively, if you’re just looking for a way to clear everything (read: reset all settings, … Read more

Can’t access RabbitMQ web management interface after fresh install

It’s new features since the version 3.3.0 http://www.rabbitmq.com/release-notes/README-3.3.0.txt server —— … 25603 prevent access using the default guest/guest credentials except via localhost. If you want enable the guest user read this or this RabbitMQ 3.3.1 can not login with guest/guest # remove guest from loopback_users in rabbitmq.config like this [{rabbit, [{loopback_users, []}]}]. # It is … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)