Como ativar o apache2?

0

Eu instalei o apache2 da seguinte maneira na minha máquina Ubuntu 16.04LTS:

$ sudo apt-get upgrade
$ sudo apt-get install apache2

Tudo funcionou bem aqui. Mas depois que eu digitei:

$ sudo systemctl start apache2
$ sudo systemctl status apache2

Mostrou isto:

apache2.service - LSB: Apache2 web serve
  Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
Drop-In: /lib/systemd/system/apache2.service.d
         └─apache2-systemd.conf
 Active: inactive (dead) since Tue 2017-05-16 21:00:45 CST; 16s ago
   Docs: man:systemd-sysv-generator(8)
Process: 5436 ExecStop=/etc/init.d/apache2 stop (code=exited,status=0/SUCCESS
Process: 5420 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCE

May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: (98)Address already in use: AH
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: (98)Address already in use: AH
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: no listening sockets available
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: AH00015: Unable to open logs
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: Action 'start' failed.
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]: The Apache error log may have 
May 16 21:00:45 shayuxiong-X555LPB apache2[5420]:  *
May 16 21:00:45 shayuxiong-X555LPB apache2[5436]:  * Stopping Apache httpd web s
May 16 21:00:45 shayuxiong-X555LPB apache2[5436]:  *
May 16 21:00:45 shayuxiong-X555LPB systemd[1]: Started LSB: Apache2 web server.

Então eu apenas desinstalei o apache2 e o reinstalei, mas a situação ainda ocorreu. Então, como posso ativar o apache2? O que significa "nenhum soquete de escuta disponível"? Eu sou totalmente novo para a instalação do LAMP e esta plataforma. Obrigado antecipadamente:)

    
por Sha 16.05.2017 / 15:32

1 resposta

1

Tente a seguinte solução:

  1. Altere a porta de escuta para nginx server abrindo /etc/nginx/sites-available e alterando a porta ou linha listen: 80 para a porta que desejar.

  2. Recarregue nginx server :

    sudo systemctl restart nginx
    
  3. Agora tente reinstalar o apache novamente.

por George Udosen 16.05.2017 / 16:17