亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ubuntu 12.04 安裝 gearman 以及php擴展安裝腳本

發布時間:2020-06-10 02:03:18 來源:網絡 閱讀:1685 作者:birdinroom 欄目:web開發


#!/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
#安裝依賴庫
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擴展庫
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
#查看擴展是否安裝成功
php --info | grep "gearman"
查看是否啟動
ps auxw | grep [g]earmand
lsof -i tcp:4730


Ubuntu 12.04 安裝 gearman 以及php擴展安裝腳本


Ubuntu 12.04 安裝 gearman 以及php擴展安裝腳本


worker.php

<?php
  $worker= new GearmanWorker();
  $worker->addServer();
  $worker->addFunction("lhb", "lhb_test");
  while ($worker->work());
  function lhb_test($job)
  {
    return strtoupper($job->workload());
  }
?>


client.php

<?php
  $client= new GearmanClient();
  $client->addServer();
  print $client->do("lhb", "this is a test by lhb");
  print "\n";
?>


測試結果:

Ubuntu 12.04 安裝 gearman 以及php擴展安裝腳本


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绵竹市| 沭阳县| 芒康县| 凌海市| 上栗县| 界首市| 京山县| 大连市| 牟定县| 丰城市| 客服| 宜昌市| 徐汇区| 白河县| 松溪县| 顺平县| 上饶市| 永宁县| 尚义县| 巩义市| 仁化县| 贵定县| 邯郸县| 桦甸市| 平和县| 阳谷县| 永春县| 瓦房店市| 建阳市| 侯马市| 武乡县| 墨竹工卡县| 济宁市| 日照市| 东丽区| 平安县| 金堂县| 宁国市| 白朗县| 辉南县| 荔波县|