欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

php重新编译

程序员文章站 2023-12-30 17:14:22
...

前提条件,已经安装过了,现在需要重新编译

修改了php漏洞等情况,需要进行重新编译

     去到php的bin目录下,运行以下代码

 ./php -i|grep "configure"

     会出现以下图片结果

php重新编译

     去到之前安装php的目录,如果不知道在哪里运行以下两行代码,找到路径

cd /
find -name configure

     去到configure的上一级目标,比如返回的是/user/php/configure,则进入到/user/php/目录下去

     运行刚刚图上打上来的信息,,红框框内的

          例如:

'./configure'  '--prefix=/路径' '--with-mysqli' '--with-pdo-mysql' '--with-iconv-dir' '--with-freetype-dir' '--with-j
peg-dir' '--with-png-dir' '--with-zlib' '--with-libxml-dir' '--enable-simplexml' '--enable-xml' '--disable-rpath' '--enable-bcmath' '--enable-soap' '--
enable-zip' '--with-curl' '--enable-fpm' '--with-fpm-user=nobody' '--with-fpm-group=nobody' '--enable-mbstring' '--enable-sockets' '--with-gd' '--with-
openssl' '--with-mhash' '--enable-opcache' '--disable-fileinfo'

php重新编译

     运行完成了 在当前目录下运行下面的

make && make install

     没问题了 就运行以下命令重启

service php-fpm restart

 

 

相关标签: php php

上一篇:

下一篇: