Password of rabbitmq system user

Viewed 26982

It's written in the documentation that RabbitMQ server

is set up to run as system user rabbitmq

What is the default password of the user?

2 Answers

There is no default password for a Linux user. The password can be set during account creation; if it isn't set, then it won't exist, and password auth is disabled for that user (/etc/shadow will show the password as '!!'). Without knowing the password (or it existing), it can only be changed/set by root.

Related