PHP扩展beanstalked遇到的问题解决记录

安装教程:http://beanspeak.readthedocs.io/en/latest/reference/install.html

需要安装zephir:

$ git clone https://github.com/phalcon/zephir
$ cd zephir
$ ./install -c

运行 zephir build 命令的时候,会提示报错,需要安装扩展。

The Zephir Parser extension is not loaded.
  Note: Zephir no longer distributed with internal parser.
  
  To install latest stable Zephir Parser please refer to:
  https://github.com/phalcon/php-zephir-parser

根据提示下载扩展。

git clone https://github.com/phalcon/php-zephir-parser.git

 ./install  

提示需要以来包 re2c: “error: unable to locate the re2c”,不要yum安装,默认版本低,不满足要求(“minimal required version of re2c is 0.13.6”)。

wget https://github.com/skvadrik/re2c/releases/download/0.16/re2c-0.16.tar.gz

tar zxvf re2c-0.16.tar.gz

cd re2c-0.16

./configure

make
make install

此时运行:re2c --version 提示找不到命令。 运行:source /etc/profile 即可。

在安装beanspeak的时候,会提示各种被禁用的php方法,在php.ini 中的disable_function 开启这些方法即可。

zephir build 即可运行成功,其中会有部分waring,可以忽略不计。

安装完成之后,在php的扩展文件夹里面会找到beanspeak.so的文件。

重启php-fpm 即可。


你可能感兴趣的:(linux)