After recovering from a disk full scenario the following error is reported
+++++++++++++++ AMQP error occurred : RabbitMQ is not accessible Reason: Connection to 127.0.0.1:5672 failed: [Errno 111] Connection refused +++++++++++++++
原因
Full disk
解决办法
RabbitMQ, the main message bus of the appliance, can be quiet sensitive to a disk full situation and the manual recovery of the service will be needed in order to pass connections through the box again.
Run the following commands from the Core shell as root
# systemctl stop rabbitmq-server.service
# rsync -avP /var/lib/rabbitmq /root/
# rm -rf /var/lib/rabbitmq/*
Reboot the appliance after issuing these commands.