

- Welcome to Geeksww.com
Installing Gearman application framework on Debian Linux
Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages.
Download Gearman from the download page or Launchpad (example below).
$ cd /tmp $ wget http://launchpad.net/gearmand/trunk/0.14/+download/gearmand-0.14.tar.gz
Make sure you check the md5 checksum of the downloaded file and compare it with the one mentioned on the downloads page (link can be found next to the file you downloaded on Launchpad).
$ tar xzf gearmand-0.14.tar.gz $ cd gearmand-0.14
Here are the software I installed before installing Gearman. You can also compile and install libevent using the instructions detailed in How to install libevent on Debian/Ubuntu/Centos Linux.
# apt-get install libevent-devel # apt-get install uuid-dev
Configure and install Gearman in /opt/gearman directory (you can change the directory if you will).
$ ./configure --prefix=/opt/gearman --enable-coverage --enable-dtrace --enable-profiling $ make # make install
Running Gearman in deamon mode as user username (replace it with the user you want to use):
/opt/gearmand/sbin/gearmand -u username -d
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I do not guarantee a response.
IMPORTANT: You must thoroughy test any instructions on a production-like test environment first before trying anything on production systems. And, make sure it is tested for security, privacy, and safety. See our terms here.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, source code, php, laptop, mysql, install cairo, java, linux, install mysql, mysql initialization, mysql mysql, tools, ubuntu
Similar Tutorials:
- How to download and install MySQLdb module for Python on Linux?
- Script to transfer files to remote server with verification
- How to setup Spamassasin to run as a deamon?
- Generating prime nos in PHP using multiprocessing - Geaman with PHP client Part I
- Download, configure, compile, and install MySQL 5.5 from source code on Linux
Tutorials in 'Operating Systems > Linux' (more):
- Bash script to compare remote directory's files using file size
- Script to transfer files to remote server with verification
- setfacl: command not found
- How to download, compile, and install CMake on Linux
- How to download, compile, and install GNU ncurses on Debian/Ubuntu Linux?
Comments (write a comment):
I trying to install Gearman on ubuntu , I am stuck to "undefined reference to `boost::program_options::detail::cmdline::get_canonical_option_prefix()'" error in , make . How can I fix it? Posted by: Kishor on Sep 11, 2012
if you have problem with boost maybe you need to install g++ or gcc-c++ . Then install also libboost-program-options-dev and libboost-thread-dev Posted by: Gilles on Dec 18, 2012