Running RabbitMQ in Terminal (Raspberry Pi)
Installation instructions for RabbitMQ Server on my Pi With RabbitMQ installed, I’m now ready to start the rabbitmq-server daemon and get RabbitMQ up and running. First, I have to enable the daemon by running the systemctl enable command and then start it by running the systemctl start command. The last command listed below is enabling the RabbitMQ Management Portal , which is very useful and I definitely want that in order to monitor my cluster health, connections, exchanges, queues, policies, etc. It comes as a plugin, so I only have to enable it as it seems. please type: sudo apt-get install rabbitmq-server sudo systemctl enable rabbitmq-server sudo systemctl start rabbitmq-server sudo rabbitmq-plugins enable rabbitmq_management sudo rabbitmqctl add_user test test sudo rabbitmqctl set_user_tags test administrator sudo rabbitmqctl set_permissions -p / test ".*" ".*" ".*" Accessing management portal in the local network But how am I