...
If you wish to utilize other than localhost, it is important to create your own vhost with the RabbitCLI which is calculated based on the below. This is important because the services utilize this unique db name to connect to the correct vhost.
Furthermore, setting the right user privileges for that vhost is also crucial. As an examle, you would need to do the two following steps to create a vhost and set privileges with the RabbitMQ CLI:
rabbitmqctl.bat add_vhost $uniqueDbName
rabbitmqctl.bat set_permissions -p $uniqueDbName guest ".*" ".*" ".*"
...