Tatva-Artha

meaning of "it"

Installing beanstalkd on ubuntu

with one comment

Here is a commad dump for installing beanstalkd on ubuntu.

$ wget http://xph.us/dist/beanstalkd/beanstalkd-1.3.tar.gz
$ tar zxvf beanstalkd-1.3.tar.gz
$ rm beanstalkd-1.3.tar.gz
$ cd beanstalkd-1.3/
$ ./configure

You might run into following error:

configure: error: Unable to locate libevent headers, please use --with-event=DIR

If so, install "libevent-dev" package.

$ sudo apt-get install libevent-dev

..continue..

$ ./configure
$ make
$ sudo make install

At this point, beanstalkd should be installed in proper location. Verify:

$ which beanstalkd

Enjoy!

http://www.tatvartha.com/wp-content/plugins/sociofluid/images/digg_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/reddit_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/stumbleupon_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/delicious_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/google_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/twitter_16.png

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

Written by Sharad

July 21st, 2009 at 9:04 pm

Posted in All

One Response to 'Installing beanstalkd on ubuntu'

Subscribe to comments with RSS or TrackBack to 'Installing beanstalkd on ubuntu'.

  1. I’ve actually published a package for beanstalkd for Ubuntu Hardy. Add this line to your /etc/apt/sources.list to use it:

    deb http://ppa.launchpad.net/auxesis/ppa/ubuntu hardy main

    The same package works fine on Intrepid too. :-)

    Lindsay Holmwood

    23 Jul 09 at 11:29 am

Leave a Reply