红联Linux门户
Linux帮助

如何在centos里面安装php-posix

发布时间:2017-07-19 09:05:41来源:linux网站作者:西贝小小凤
今天在虚拟机上安装一个系统的插件,出现了You must have POSIX and PCNTL functions to use Video Process,搜了一下缺少插件,那接下来就是安装了。
系统:centos 7
php版本:PHP 7
 
1.安装php-posix
yum  -y install php-process
 
2.验证是否安装上了
php -m|grep posix
如果显示 posix说明安装成功了,哈哈哈接下来重启apache就ok了。
重启apache:
service httpd restart
注意:这个安装插件要看你的php安装版本,我们大boss上面装的php是php70w,所以安装的时候要用 yum  -y install php70w-process 这样写,注意细节很重要!
 
本文永久更新地址:http://www.linuxdiyf.com/linux/32028.html