php重新编译
程序员文章站
2023-12-30 17:14:22
...
前提条件,已经安装过了,现在需要重新编译
修改了php漏洞等情况,需要进行重新编译
去到php的bin目录下,运行以下代码
./php -i|grep "configure"
会出现以下图片结果
去到之前安装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'
运行完成了 在当前目录下运行下面的
make && make install
没问题了 就运行以下命令重启
service php-fpm restart