How can i install gearman php extension on Windows OS?(如何在 Windows 操作系统上安装 gearman php 扩展?)
问题描述
请任何人帮助我在 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时,找不到命令错误.
要在 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
资源
http://www.cppblog.com/guojingjia2006/archive/2012/12/28/196743.html
Cygwin Make bash 命令未找到
https://gist.github.com/mnapoli/5270256
如何使用 PHP 扩展安装 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
- 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
这篇关于如何在 Windows 操作系统上安装 gearman php 扩展?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Windows 操作系统上安装 gearman php 扩展?
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01