linux 安装redis 并设置开机重启​​点击这里​​

php 如何编译phpredis 的扩展 ​​点击这里​​

在编译的phpredis 的过程中,出现了的错误:
当make test 的时候发现有一个错误 error

+-----------------------------------------------------------+
| ! ERROR ! |
| The test-suite requires that proc_open() is available. |
| Please check if you disabled it in php.ini. |
+---------------------------------------------

提示 什么什么不支持:

解决方案:

find / -name “php.ini”

vim php.ini 路径

查找替换:

改为disable_functions = shell_exec, system, passthru, exec, popen

接着再

make install