Skip to content

Instantly share code, notes, and snippets.

@jcpowermac
Created August 12, 2014 14:53
Show Gist options
  • Select an option

  • Save jcpowermac/72072c7f2df107db433f to your computer and use it in GitHub Desktop.

Select an option

Save jcpowermac/72072c7f2df107db433f to your computer and use it in GitHub Desktop.
Create RabbitMQ passwords
for serv in "cinder" "nova" "neutron" "heat";
do
passwd=`openssl rand -base64 8`
echo "$serv - $passwd"
rabbitmqctl add_user $serv $passwd
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment