安装php拓展的时候遇到这个错,原因是安装了apache2的包,但是我的服务器用的是nginx。
NOTICE: Not enabling PHP 7.2 FPM by default.
NOTICE: To enable PHP 7.2 FPM in Apache2 do:
NOTICE: a2enmod proxy_fcgi setenvif
NOTICE: a2enconf php7.2-fpm
NOTICE: You are seeing this message because you have apache2 package installed.
Setting up php7.2-zip (7.2.4-1+ubuntu16.04.1+deb.sury.org+1) ...
解决方法:
卸载apache相关的东西。
sudo apt-get purge apache2
sudo apt autoremove
sudo apt autoclean
然后再次安装所需要的拓展就行了。