How can i install gearman php extension on Windows OS?

隐身守侯 提交于 2019-11-26 23:31:20

问题


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.


回答1:


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

  • http://www2.warwick.ac.uk/fac/sci/moac/people/students/peter_cock/cygwin/part2/

Install wget via Cygwin

  • https://superuser.com/questions/693284/wget-command-not-working-in-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

  • http://www.cppblog.com/guojingjia2006/archive/2012/12/28/196743.html

  • Cygwin Make bash command not found

  • https://gist.github.com/mnapoli/5270256

  • How to install Gearman with PHP Extension



来源:https://stackoverflow.com/questions/11373363/how-can-i-install-gearman-php-extension-on-windows-os

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!