Ubuntu 12.04 安装 gearman 以及php扩展安装脚本

简介:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/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


wKiom1NqEPHjPaXMAACsyb68Z8U836.jpg


wKioL1NqEC_xrtLyAAH1RaJaL2k155.jpg


worker.php

1
2
3
4
5
6
7
8
9
10
<?php
   $worker new  GearmanWorker();
   $worker ->addServer();
   $worker ->addFunction( "lhb" "lhb_test" );
   while  ( $worker ->work());
   function  lhb_test( $job )
   {
     return  strtoupper ( $job ->workload());
   }
?>


client.php

1
2
3
4
5
6
<?php
   $client new  GearmanClient();
   $client ->addServer();
   print  $client -> do ( "lhb" "this is a test by lhb" );
   print  "\n" ;
?>


测试结果:

wKioL1NqD4XC-lCeAABuCL821z8142.jpg


本文转自birdinroom 51CTO博客,原文链接:http://blog.51cto.com/birdinroom/1408075,如需转载请自行联系原作者

相关文章
|
1月前
|
并行计算 Ubuntu Linux
Ubuntu学习笔记(五):18.04安装多版本CUDA
这篇博客文章介绍了在Ubuntu 18.04系统上如何安装和切换不同版本的CUDA,以及如何安装不同版本的cuDNN。
183 2
|
1月前
|
并行计算 PyTorch TensorFlow
Ubuntu安装笔记(一):安装显卡驱动、cuda/cudnn、Anaconda、Pytorch、Tensorflow、Opencv、Visdom、FFMPEG、卸载一些不必要的预装软件
这篇文章是关于如何在Ubuntu操作系统上安装显卡驱动、CUDA、CUDNN、Anaconda、PyTorch、TensorFlow、OpenCV、FFMPEG以及卸载不必要的预装软件的详细指南。
3290 3
|
8天前
|
Ubuntu 开发工具 git
Ubuntu安装homebrew的完整教程
本文介绍了如何在没有公网的情况下安装 Homebrew。首先访问 Homebrew 官网,然后通过阿里云的镜像克隆安装脚本,并创建普通用户进行安装。接着修改 `install.sh` 文件指向国内镜像,执行安装命令。最后配置环境变量并更换 Homebrew 源为国内镜像,确保安装顺利。
97 50
|
30天前
|
Ubuntu Linux 测试技术
Linux系统之Ubuntu安装cockpit管理工具
【10月更文挑战第13天】Linux系统之Ubuntu安装cockpit管理工具
109 4
Linux系统之Ubuntu安装cockpit管理工具
|
8天前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
23 2
|
1月前
|
Ubuntu 应用服务中间件 nginx
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
本文是关于Ubuntu系统中使用ffmpeg 3.2.16源码编译OpenCV 3.4.0的安装笔记,包括安装ffmpeg、编译OpenCV、卸载OpenCV以及常见报错处理。
141 2
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
|
1月前
|
Ubuntu Linux C语言
Ubuntu安装笔记(二):ubuntu18.04编译安装opencv 3.4.0 opencv_contrib3.4.0
本文介绍了在Ubuntu 18.04系统上编译安装OpenCV 3.4.0及其扩展包opencv_contrib 3.4.0的详细步骤,包括下载源码、安装依赖、配置CMake和编译安装,以及常见问题的解决方法。
84 1
Ubuntu安装笔记(二):ubuntu18.04编译安装opencv 3.4.0 opencv_contrib3.4.0
|
1月前
|
Ubuntu 虚拟化
软件安装(二):VMware ubuntu20.04 安装步骤
这篇文章是关于如何在VMware Workstation 16 Player上安装Ubuntu 20.04桌面版的详细步骤指南。
165 2
软件安装(二):VMware ubuntu20.04 安装步骤
|
1月前
|
PyTorch TensorFlow 算法框架/工具
Jetson环境安装(一):Ubuntu18.04安装pytorch、opencv、onnx、tensorflow、setuptools、pycuda....
本文提供了在Ubuntu 18.04操作系统的NVIDIA Jetson平台上安装深度学习和计算机视觉相关库的详细步骤,包括PyTorch、OpenCV、ONNX、TensorFlow等。
44 1
Jetson环境安装(一):Ubuntu18.04安装pytorch、opencv、onnx、tensorflow、setuptools、pycuda....
|
1月前
|
消息中间件 监控 Ubuntu
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper
73 3
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper