且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2023-02-22 20:55:04

要在 CentOS 或 Debian 中安装带有 PHP 扩展的 Gearman,请参阅

安装 libevent

 wget https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gztar -zxvf libevent-2.0.22-stable.tar.gzcd libevent-2.0.22-stable./配置制作进行安装

安装 gearmand 和 libgearman

wget https://github.com/gearman/gearmand/archive/1.1.12.tar.gztar -zxvf gearmand-1.1.12.tar.gzcd gearmand-1.1.12./配置制作进行安装

安装 pecl-gearman

pecl 安装 gearman

资源

Please anybody help me out in installing gearman php extension on windows xp. I have xampp 1.7.7 installed on my system and i have installed Cygwin, libevent-1.4.14b-stable and gearmand on my system. Please let me know what more is needed to install gearman-1.0.2 php extension. As when i run the gearman-1.0.2 on cygwin terminal throwing error of command not found.

to install Gearman with PHP Extension in CentOS or Debian see How to install Gearman with PHP Extension

Installing and Updating Cygwin Package

from: https://cygwin.com/install.html

Install the Latest GCC and make via Cygwin

Install wget via Cygwin

Install 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

install gearmand and 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

install pecl-gearman

pecl install gearman

Resources