Para configurar o php7 para rodar com seu servidor, você precisa fazer alguma configuração:
1. Certifique-se de remover qualquer vestígio de php/php5
Abra um terminal Ctrl + Alt + T e:
cd /etc/apache2/mods-enabled
ls -la
A saída deve não conter php5.conf
ou php5.load
, mas se ocorrer, faça o seguinte:
# this is the proper way of disabling modules
sudo a2dismod php5
# run this only if the above command didn't remove the php5 sym-links
sudo rm php5.load
sudo rm php5.conf
Adicione agora php7.0.conf
e php7.0.load
:
# this is the proper way of enabling modules
sudo a2enmod php7.0
# run this only if the above command didn't create the php7.0 sym-links
sudo ln -s php7.0.conf ../mods-available/php7.0.conf
sudo ln -s php7.0.load ../mods-available/php7.0.load
A saída de ls -la php*
deve ficar assim:
lrwxrwxrwx 1 root root 29 Apr 15 03:55 php7.0.conf -> ../mods-available/php7.0.conf
lrwxrwxrwx 1 root root 29 Apr 15 03:55 php7.0.load -> ../mods-available/php7.0.load
Depois de lidar com os módulos, chegamos ao diretório /etc/apache2/conf-enabled
. Remova qualquer vestígio de php / php5 aqui também por sudo rm <name>
Então, se necessário, faça:
# the proper way of enabling configs
sudo a2enconf php7.0-cgi
sudo a2enconf php7.0-fpm
# do those commands only if the above didn't work out
sudo ln -s php7.0-cgi.conf ../conf-available/php7.0-cgi.conf
sudo ln -s php7.0-fpm.conf ../conf-available/php7.0-fpm.conf
A saída de ls -la php*
deve ficar assim:
lrwxrwxrwx 1 root root 33 Apr 21 17:00 php7.0-cgi.conf -> ../conf-available/php7.0-cgi.conf
lrwxrwxrwx 1 root root 33 Apr 21 17:01 php7.0-fpm.conf -> ../conf-available/php7.0-fpm.conf
2. Reiniciando o Apache2
Antes de reiniciar o Apache, limpe o Apache error.log
e reinicie:
sudo su
> /var/log/apache2/error.log
exit
sudo service apache2 restart
Agora, verifique o error.log
emitindo cat /var/log/apache2/error.log | less
(a passagem por menos permite que você navegue para cima e para baixo com facilidade, q
sai da saída).
Se o seu error.log
contiver muitos (e eu literalmente significar um heap ), alguns MIBS not found
farão o seguinte:
sudo apt install libsnmp-dev
sudo net-snmp-config --snmpconfpath
sudo apt-get install snmp snmp-mibs-downloader
sudo su
> /var/log/apache2/error.log
exit
sudo service apache2 restart
A verificação novamente de que error.log
agora deve conter apenas três linhas:
[Sat Apr 23 01:39:07.504005 2016] [mpm_prefork:notice] [pid 1647] AH00169: caught SIGTERM, shutting down
[Sat Apr 23 01:39:08.685774 2016] [mpm_prefork:notice] [pid 9590] AH00163: Apache/2.4.18 (Ubuntu) mod_perl/2.0.9 Perl/v5.22.1 configured -- resuming normal operations
[Sat Apr 23 01:39:08.685938 2016] [core:notice] [pid 9590] AH00094: Command line: '/usr/sbin/apache2'
Seu Apache com o php7.0 agora deve estar configurado corretamente.