Skip to content

Instantly share code, notes, and snippets.

View jeffsrepoaccount's full-sized avatar

Jeff Lambert jeffsrepoaccount

  • Durham, N.C.
View GitHub Profile
@jeffsrepoaccount
jeffsrepoaccount / gearman-install
Last active August 29, 2015 14:01
Installing gearmand and Gearman Job Server/Client for PHP
# For a long while now, you cannot rely on the ppa repository to install gearmand due to an old version of
# libgearman being present and causing havoc during the install process. Instead, gearmand must be compiled
# from source (replace 1.1.8 with the most current version of gearmand).
sudo apt-get install build-essential libboost-thread-dev libboost-program-options-dev libevent-dev libcloog-ppl0 libmysqld-dev uuid-dev gperf -y
wget https://launchpad.net/gearmand/1.2/1.1.8/+download/gearmand-1.1.8.tar.gz
mkdir ~/gearman-source
tar xzf gearmand-1.1.8.tar.gz -C ~/gearman-source
cd ~/gearman-source/gearmand-1.1.8
./configure