Stardate 20120813
- Install macports http://www.macports.org/install.php
- Update macports:Â
sudo port -v selfupdate
- Install git-core, since it needed by rabbitmq-server, but not listed as such. From the git doc http://git-scm.com/book/en/Getting-Started-Installing-Git, you need to execute:Â
sudo port install git-core +svn +doc +bash_completion +gitweb
- Install rabbitmq-server:Â
sudo port install rabbitmq-server
- To start rabbitmq automatically:Â
sudo port load rabbitmq-server
Or manually:sudo rabbitmq-server -detached
The problems seen at http://codingiscoding.wordpress.com/2011/04/17/rabbitmq-on-os-x/Â do not appear with this version - Log files are found here:Â
/opt/local/var/log/rabbitmq
which are not automatically displayed by konsole. - To enable the management web console:Â
sudo rabbitmq-plugins enable rabbitmq_management
- Restart:
sudo launchctl stop org.macports.rabbitmq-server
sudo launchctl start org.macports.rabbitmq-server
- You can view RabbitMQ then here:
http://<machinename>:55672/mgmt/
with username/passwordguest/guest
. See http://www.rabbitmq.com/management.html. - Add a new administrator user and delete guest, either by the web console, or by
rabbitmqctl
.
If you have forgotten your password, then rabbitmqctl
is your friend: sudo rabbitmqctl change_password <user_name> <password>
. See http://www.rabbitmq.com/man/rabbitmqctl.1.man.html for details.
There is also a python utility script available:Â http://www.rabbitmq.com/management-cli.html