Não é possível usar http: // localhost após a atualização do Ubuntu 15.10 - 16.04

0

Eu instalei a lâmpada no meu 15.10. Estava funcionando. Ontem eu atualizei meu computador ubuntu 15.10 para 16.04. Tentei acessar o host local sem sucesso.

Eu tentei service apache2 restart e recebi o seguinte erro:

● apache2.service - LSB: Apache2 web server
   Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
  Drop-In: /lib/systemd/system/apache2.service.d
           └─apache2-systemd.conf
   Active: failed (Result: exit-code) since Sun 2017-06-25 13:50:20 IST; 1min 0s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 5414 ExecStart=/etc/init.d/apache2 start (code=exited, status=1/FAILURE)

Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]:  *
Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]:  * The apache2 configtest failed.
Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]: Output of config test was:
Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]: apache2: Syntax error on line 140 of /etc/apache2/apache2.conf: Syntax error on line 1 of /etc/apache2/mods-enabled/php5.load: Cannot load /usr/lib/apache2/modules/libphp5.so into server: /usr/lib/apache2/modules/libphp5.so: cannot open shared object file: No such file or directory
Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]: Action 'configtest' failed.
Jun 25 13:50:20 ajay-Lenovo-G50-70 apache2[5414]: The Apache error log may have more information.
Jun 25 13:50:20 ajay-Lenovo-G50-70 systemd[1]: apache2.service: Control process exited, code=exited status=1
Jun 25 13:50:20 ajay-Lenovo-G50-70 systemd[1]: Failed to start LSB: Apache2 web server.
Jun 25 13:50:20 ajay-Lenovo-G50-70 systemd[1]: apache2.service: Unit entered failed state.
Jun 25 13:50:20 ajay-Lenovo-G50-70 systemd[1]: apache2.service: Failed with result 'exit-code'.
    
por PrimeHero 25.06.2017 / 12:03

1 resposta

0

Entendi! Não se preocupe!

Eu entendi que o 16.04 vem com php 7.0 em vez de 5.0. Meu palpite é que eu tinha módulos do php 5.0 instalados para o apache.

Instalando o módulo apache do php7.0:

sudo apt-get install libapache2-mod-php7.0

Desabilitando o módulo php5, já que não temos o php5.0:

sudo a2dismod php5

Módulo php7 ativado:

sudo a2enmod php7.0

reiniciou o apache:

sudo service apache2 restart 

é isso aí

    
por PrimeHero 25.06.2017 / 12:15