From what I found :
cd /var/log/rabbitmq/
tail -f rabbit@landscape.log (or different name perhaps on your server)
Check the error message:
*=ERROR REPORT==== 11-May-2018::12:04:32 ===
closing AMQP connection <0.2798.0> (127.0.0.1:53570 -> 127.0.0.1:5672):
{handshake_error,starting,0,
{amqp_error,access_refused,
"AMQPLAIN login refused: user 'landscape' - invalid credentials",
'connection.start_ok'}}*
If this is the problem follow these instructions:
less /opt/canonical/landscape/configs/standalone/service.conf
Check section [broker]
Copy the password string part after the b64:
Use base64 decoder (here's an online one) or you can use
base64 -d <<< "paste the coded string here"
Execute the command
rabbitmqctl change_password <user> <password>
Check rabbitmq
logfile again and check if computer is removed
Hope this helps!