Nginx não é possível limpar no Ubuntu 16.04

3

Eu quero reinstalar o nginx e recebo esse erro ao limpar ou instalar.

sudo service nginx start
Job for nginx.service failed because the control process exited with 
error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
alson@Alson:~$ sudo apt purge nginx
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
nginx*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
2 not fully installed or removed.
After this operation, 37,9 kB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 197124 files and directories currently installed.)
Removing nginx (1.10.3-0ubuntu0.16.04.2) ...
Setting up nginx-core (1.10.3-0ubuntu0.16.04.2) ...
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 Jum 2017-09-22 10:32:36 WIB; 12ms ago
Process: 13157 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=1/FAILURE)
Main PID: 2996 (code=exited, status=0/SUCCESS)

Sep 22 10:32:36 Alson systemd[1]: Starting A high performance web server and a reverse proxy server...
Sep 22 10:32:36 Alson nginx[13157]: nginx: [emerg] open() "/etc/nginx/nginx.conf" failed (2: No such file or directory)
Sep 22 10:32:36 Alson nginx[13157]: nginx: configuration file /etc/nginx/nginx.conf test failed
Sep 22 10:32:36 Alson systemd[1]: nginx.service: Control process exited, code=exited status=1
Sep 22 10:32:36 Alson systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Sep 22 10:32:36 Alson systemd[1]: nginx.service: Unit entered failed state.
Sep 22 10:32:36 Alson 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
Errors were encountered while processing:
nginx-core
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Alson 22.09.2017 / 05:36

1 resposta

2

Você parece ter pacotes não configurados ( 2 not fully installed or removed. ).

Então você deve lidar com eles primeiro fazendo sudo apt install -f . Depois, você pode tentar novamente para limpar ( sudo apt purge nginx ). Dependendo da sua situação, eu recomendaria remover os subcomponentes nginx usando sudo apt autoremove --purge para limpar as dependências nginx restantes para ter uma reinstalação limpa.

Se tudo isso funcionar, você pode reinstalar o nginx ( sudo apt install nginx ).

Editar:

Como o problema não pode ser resolvido dessa forma e o problema é causado por nginx-core , você pode tentar corrigir o problema manualmente fazendo isso:

sudo apt -f remove nginx-core

Isto diz ao apt para f ix o problema usando sua instrução fornecida, que é apenas remover nginx-core .

Editar 2:

Como o último pacote com falha é nginx-full (consulte a linha 29 em seu log ) você tem que remover isso também.

Para fazer isso: sudo apt -f remove nginx-full

Siga as etapas acima, começando com sudo apt autoremove --purge .

    
por FatalMerlin 22.09.2017 / 08:32