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

Handling long running tasks in pika / RabbitMQ

For now, your best bet is to turn off heartbeats, this will keep RabbitMQ from closing the connection if you’re blocking for too long. I am experimenting with pika’s core connection management and IO loop running in a background thread but it’s not stable enough to release. In pika v1.1.0 this is ConnectionParameters(heartbeat=0)

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