Erro ao instalar o Nginx no Ubuntu 16.04

5

Continuo recebendo este erro ao tentar instalar o nginx. Tentei reinstalá-lo várias vezes, mas esse erro continua aparecendo e não consigo iniciar o nginx.

Aprecie qualquer ajuda!

Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
invoke-rc.d: initscript nginx, action "start" failed.
● nginx.service - A high performance web server and a reverse proxy server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Mon 2017-03-27 21:38:51 PHT; 10ms ago
  Process: 28178 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=1/FAILURE)
  Process: 28174 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)

Mar 27 21:38:49 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:49 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:50 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:50 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:51 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Mar 27 21:38:51 nico-Aspire-E5-575G nginx[28178]: nginx: [emerg] still could not bind()
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Control process exited, code=exited status=1
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Unit entered failed state.
Mar 27 21:38:51 nico-Aspire-E5-575G systemd[1]: nginx.service: Failed with result 'exit-code'.
dpkg: error processing package nginx-core (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of nginx:
 nginx depends on nginx-core (>= 1.10.0-0ubuntu0.16.04.4) | nginx-full (>= 1.10.0-0ubuntu0.16.04.4) | nginx-light (>= 1.10.0-0ubuntu0.16.04.4) | nginx-extras (>= 1.10.0-0ubuntu0.16.04.4); however:
  Package nginx-core is not configured yet.
  Package nginx-full is not installed.
  Package nginx-light is not installed.
  Package nginx-extras is not installed.
 nginx depends on nginx-core (<< 1.10.0-0ubuntu0.16.04.4.1~) | nginx-full (<< 1.10.0-0ubuntu0.16.04.4.1~) | nginx-light (<< 1.10.0-0ubuntu0.16.04.4.1~) | nginx-extras (<< 1.10.0-0ubuntu0.16.04.4.1~); however:
  Package nginx-core is not configured yet.
  Package nginx-full is not installed.
  Package nginx-light is not installed.
  Package nginx-extras is not installed.

dpkg: error processing package nginx (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                          Processing triggers for systemd (229-4ubuntu16) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Errors were encountered while processing:
 nginx-core
 nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Karl Jamoralin 27.03.2017 / 15:45

3 respostas

5

Algo já está sendo executado na porta 80, portanto, quando o nginx tenta iniciar e usar essa porta, ele falha. Verifique para ver o que está sendo executado na sua porta 80 e pare-o. Você pode descobrir o que está usando a porta 80 com:

sudo netstat -lnp | grep 0.0.0.0:80

Depois de encontrar o que está usando a porta, faça um systemctl stop para pará-lo e tente iniciar o nginx novamente. Tenha em mente que você terá que desativar esse outro serviço permanentemente para que o nginx funcione corretamente.

    
por ddulic 27.03.2017 / 17:18
0

Com base na mensagem de erro:

  Package nginx-full is not installed.
  Package nginx-light is not installed.
  Package nginx-extras is not installed.

Eu recomendo que você execute sudo apt-get install nginx-full nginx-light nginx-extras

    
por Facottons 27.03.2017 / 16:22
0

Parece que o NGINX e alguns outros aplicativos de servidor são ambos obrigatórios para usar a porta 80 como porta padrão.

A solução mais fácil seria alterar a porta NGINX para outra coisa, o que pode ser feito editando /etc/nginx/sites-available/default (ou qualquer arquivo de configuração) para ligar a uma porta diferente.

Procure uma linha que diga algo assim:

Listen 80;

Altere o 80 para uma porta livre (por exemplo, 851):

Listen 851;

Reinicie o NGINX e ele deve ser iniciado novamente sem problemas.

Observe que, se você quiser realmente usar o NGINX como seu host, precisará alterar a configuração do outro servidor da Web.

    
por Brian 09.07.2017 / 04:09

Tags