This post originated from an RSS feed registered with .NET Buzz
by Maruis Marais.
Original Post: Install RabbitMQ on Snow Leopard with Macports
Feed Title: exceptionz
Feed URL: http://feeds.feedburner.com/Exceptionz
Feed Description: I am an XP, TDD, OO and .NET enthusiast. Things like Design Patterns makes my pulse race, I love learning exciting new things and to share my thoughts and techniques with the world. So join me and together we can explore the awesome world of software development
Before we can start to install RabbitMQ, we need to update the MacPorts repository to use the latest RabbitMQ release:
Open /opt/local/etc/macports/sources.conf in text editor, and replace the ‘rsync://’ line with the following:
http://www.rabbitmq.com/releases/macports rsync://rsync.macports.org/release/ports/ [default]
Now we can use the sync command to cause MacPorts to retrieve the package indices from the newly-added repository
sudo port sync
Before you [...]