63 votes

Erreur d'installation de Nginx dans Ubuntu 16.04

:~$ sudo apt-get remove nginx\* && sudo apt-get install nginx-full\*

Reading package lists... Done
Building dependency tree       
Reading state information... Done

After this operation, 5,579 kB of additional disk space will be used.
Do you want to continue? \[Y/n\] y
Get:1 http://in.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 nginx-full-dbg amd64 1.10.0-0ubuntu0.16.04.1 \[3,789 kB\]
Fetched 3,789 kB in 33s (112 kB/s)                                             
Selecting previously unselected package nginx-common.
(Reading database ... 189767 files and directories currently installed.)
Preparing to unpack .../nginx-common\_1.10.0-0ubuntu0.16.04.1\_all.deb ...
Unpacking nginx-common (1.10.0-0ubuntu0.16.04.1) ...
Selecting previously unselected package nginx-full.
Preparing to unpack .../nginx-full\_1.10.0-0ubuntu0.16.04.1\_amd64.deb ...
Unpacking nginx-full (1.10.0-0ubuntu0.16.04.1) ...
Selecting previously unselected package nginx-full-dbg.
Preparing to unpack .../nginx-full-dbg\_1.10.0-0ubuntu0.16.04.1\_amd64.deb ...
Unpacking nginx-full-dbg (1.10.0-0ubuntu0.16.04.1) ...
Processing triggers for ufw (0.35-0ubuntu1) ...
Rules updated for profile 'Apache Full'
Rules updated for profile 'Nginx HTTP'

Processing triggers for systemd (229-4ubuntu4) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up nginx-common (1.10.0-0ubuntu0.16.04.1) ...
Setting up nginx-full (1.10.0-0ubuntu0.16.04.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-full (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of nginx-full-dbg:
 nginx-full-dbg depends on nginx-full (= 1.10.0-0ubuntu0.16.04.1); however:
  Package nginx-full is not configured yet.

dpkg: error processing package nginx-full-dbg (--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-full

 nginx-full-dbg

E: Sub-process /usr/bin/dpkg returned an error code (1)

148voto

Andrew Chan Points 1481

Arrêter apache2 avant d'installer nginx devrait résoudre ce problème :

sudo service apache2 stop

28voto

A.R. Winters Points 281

Andrew Chan a fourni la bonne réponse pour moi. Pour étendre un peu sa réponse, voici ce que vous pouvez faire en ligne de commande ;

arrêter apache2

sudo systemctl stop apache2.service

empêcher apache2 de démarrer au démarrage

sudo systemctl disable apache2.service

Réinstaller nginx

sudo apt-get install nginx

11voto

user551419 Points 111

Dans mon cas, l'erreur est que le serveur a l'IPv6 désactivé. Solution :

Editar /etc/nginx/sites-enabled/default et commentez IPv6 :

listen [::]:80 default_server;

Réinstallez nginx :

apt purge nginx
apt autoremove
apt install nginx

9voto

David Baucum Points 101

Je viens d'avoir ce problème, mais la solution était légèrement différente.

Après avoir résolu une simple erreur de configuration du site, j'ai pu mettre à jour nginx.

Vérifiez votre journal d'erreurs nginx :

sudo cat /var/log/nginx/error.log|less

Alors essayez à nouveau :

sudo apt-get update;sudo apt-get upgrade

2voto

mansim Points 121

Dans mon cas, rien n'a aidé, sauf ceci :

sudo fuser -k 80/tcp

service nginx start

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X