如何在Windows操作系统上安装gearman php扩展?

时间:2012-07-07 07:59:59

标签: php windows operating-system php-extension gearman

请有人帮我在windows xp上安装gearman php扩展。我在我的系统上安装了xampp 1.7.7,我在我的系统上安装了Cygwin,libevent-1.4.14b-stable和gearmand。请让我知道安装gearman-1.0.2 php扩展所需的更多内容。当我在cygwin终端上运行gearman-1.0.2时抛出命令未找到错误。

1 个答案:

答案 0 :(得分:5)

  

在CentOS或Debian中安装带有PHP扩展的Gearman,请参阅   How to install Gearman with PHP Extension

安装和更新Cygwin软件包

来自:https://cygwin.com/install.html

安装最新的GCC并通过Cygwin

制作

enter image description here

通过Cygwin安装wget

enter image description here

安装libevent

   wget https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz
    tar -zxvf libevent-2.0.22-stable.tar.gz
    cd libevent-2.0.22-stable
    ./configure
    make
    make install

安装gearmand和libgearman

wget https://github.com/gearman/gearmand/archive/1.1.12.tar.gz
tar -zxvf gearmand-1.1.12.tar.gz
cd gearmand-1.1.12
./configure
make
make install

安装pecl-gearman

pecl install gearman

<强>资源