#!/usr/bash #create by lhb #date 2014-05-07 #desc install gearman and php extension for Ubuntu 12.04.4 LTS PHP 5.5 apt-get update #安裝依賴庫(kù) apt-get install libboost-all-dev gperf libevent1-dev libcloog-ppl0 mkdir -pv /home/lhb/software && cd /home/lhb/software #下載gearman包 wget https://launchpad.net/gearmand/1.2/1.1.8/+download/gearmand-1.1.8.tar.gz tar zxvf gearmand-1.1.8.tar.gz cd gearmand-1.1.8/ ./configure make make install cd .. apt-get install gearman-job-server service gearman-job-server start ps -ef |grep gearman #安裝php5-fpm apt-get install php5-fpm php-cli php5-cli php5-dev #下載gearman的php擴(kuò)展庫(kù) wget http://pecl.php.net/get/gearman-1.1.2.tgz tar zxvf gearman-1.1.2.tgz cd gearman-1.1.2/ phpize whereis php-config ./configure --with-php-config=/usr/bin/php-config make make install #加入到php.ini配置 echo "extension=gearman.so" > /etc/php5/mods-available/gearman.ini #cd /etc/php5/cli/conf.d/ && ln -s ../../mods-available/gearman.ini gearman.ini #cd /etc/php5/fpm/conf.d/ && ln -s ../../mods-available/gearman.ini gearman.ini for target_path in /etc/php5/cli/conf.d/ /etc/php5/fpm/conf.d/ ; do cd $target_path && ln -s ../../mods-available/gearman.ini gearman.ini done service php5-fpm restart #查看擴(kuò)展是否安裝成功 php --info | grep "gearman" 查看是否啟動(dòng) ps auxw | grep [g]earmand lsof -i tcp:4730
詔安ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
worker.php
addServer(); $worker->addFunction("lhb", "lhb_test"); while ($worker->work()); function lhb_test($job) { return strtoupper($job->workload()); } ?>
client.php
addServer(); print $client->do("lhb", "this is a test by lhb"); print "\n"; ?>
測(cè)試結(jié)果: