nginx falha ao instalar no servidor Ubuntu 15.10

2

Estou tentando instalar o nginx no meu Ubuntu Server 15.10 recém-instalado com a área de trabalho Mate.

Eu fiz uma atualização rápida:

sudo apt-get update

Agora tentando instalar o nginx:

sudo apt-get install nginx

aqui está o que estou recebendo:

server@Node1:~/nod$ sudo apt-get install nginx
Reading package lists... Done
Building dependency tree       
Reading state information... Done
nginx is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up nginx-core (1.9.3-1ubuntu1.1) ...
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.
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.9.3-1ubuntu1.1) | nginx-full (>= 1.9.3-1ubuntu1.1) | nginx-light (>= 1.9.3-1ubuntu1.1) | nginx-extras (>= 1.9.3-1ubuntu1.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.
 nginx depends on nginx-core (<< 1.9.3-1ubuntu1.1.1~) | nginx-full (<< 1.9.3-1ubuntu1.1.1~) | nginx-light (<< 1.9.3-1ubuntu1.1.1~) | nginx-extras (<< 1.9.3-1ubuntu1.1.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.
Errors were encountered while processing:
 nginx-core
 nginx
E: Sub-process /usr/bin/dpkg returned an error code (1)

Aqui está a saída de systemctl status nginx.service

 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 Sat 2016-02-27 20:32:18 EST; 32min ago
  Process: 6023 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=1/FAILURE)
  Process: 6020 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)

Feb 27 20:32:16 Node1 nginx[6023]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Feb 27 20:32:17 Node1 nginx[6023]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Feb 27 20:32:17 Node1 nginx[6023]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Feb 27 20:32:17 Node1 nginx[6023]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Feb 27 20:32:17 Node1 nginx[6023]: nginx: [emerg] bind() to [::]:80 failed (98: Address already in use)
Feb 27 20:32:18 Node1 nginx[6023]: nginx: [emerg] still could not bind()
Feb 27 20:32:18 Node1 systemd[1]: nginx.service: Control process exited, code=exited status=1
Feb 27 20:32:18 Node1 systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Feb 27 20:32:18 Node1 systemd[1]: nginx.service: Unit entered failed state.
Feb 27 20:32:18 Node1 systemd[1]: nginx.service: Failed with result 'exit-code'.

Esta é minha primeira experiência com 15.10 e esperava ser mais fácil. Eu tenho pouco tempo para gastar na instalação do servidor e pensando em reverter para 14.xx. Por favor, informe se você tem alguma solução.

Obrigado.

    
por E.Z. 28.02.2016 / 03:11

4 respostas

5

No seu caso, a porta 80 ou a porta 98 já está sendo usada por algum outro processo. Você precisa descobrir qual processo está usando essas portas e matar esse processo ou serviço.

sudo netstat -nlp

e então você pode tentar iniciar o nginx. Nginx BTW já está instalado no seu caso.

Você pode consultar este link1 ou link2

    
por Ashu 28.02.2016 / 03:43
1

Se você tiver o Apache instalado.

Aplique os seguintes comandos.

Pare o apache2

service apache2 stop

em seguida, instale o nginx

sudo apt-get install nginx 
    
por Kaushal Suthar 29.06.2016 / 20:00
0

Eu estava tendo o mesmo problema. O conselho sobre o Apache não era relevante, já que eu o desinstalei ativamente durante a configuração.

Acontece que eu estava vendo o resultado de um conflito entre o arquivo de configuração do nginx /etc/nginx/nginx.conf e o script de serviço em /lib/systemd/system/nginx.service .

Especificamente, o script de serviço estava iniciando o nginx com algumas opções, incluindo daemon on :

$ cat /lib/systemd/system/nginx.service
...
[Service]
...
ExecStartPre=/usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
ExecStart=/usr/sbin/nginx -g 'daemon on; master_process on;'
ExecReload=/usr/sbin/nginx -g 'daemon on; master_process on;' -s reload
...

Corri /usr/sbin/nginx -g 'daemon on; master_process on;' diretamente no terminal e recebi o seguinte erro:

nginx: [emerg] "daemon" directive is duplicate in /etc/nginx/nginx.conf:1

Eu dei uma olhada em /etc/nginx/nginx.conf e encontrei (na linha 1):

daemon off;

Comentando isso e executando sudo apt-get -f install resolveu o problema.

    
por Phillip B Oldham 27.08.2016 / 10:47
0

Heres o bug. Você pode editar manualmente uma correção.

Eu tenho em repos digitalocean. Usando virtualmin?

link

    
por Kangarooo 05.11.2016 / 23:09