web-dev-qa-db-ja.com

NginxはUbuntu 16.04でパージできない

nginxを再インストールしたいのですが、パージまたはインストール時にこのエラーが発生します。

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)
3
Alson

未構成のパッケージ(2 not fully installed or removed.)があるようです。

したがって、最初にSudo apt install -fを実行して対処する必要があります。その後、パージを再試行できます(Sudo apt purge nginx)。状況に応じて、Sudo apt autoremove --purgeを使用してnginxサブコンポーネントを削除し、残りのnginxの依存関係を削除してクリーンな再インストールを行うことをお勧めします。

すべてがうまくいったら、nginx(Sudo apt install nginx)を再インストールできます。

編集:

この方法では問題を解決できず、nginx-coreが原因で問題が発生するため、次のようにして手動で問題を修正できます。

Sudo apt -f remove nginx-core

これにより、提供された命令を使用して問題をfixに通知します。つまり、nginx-coreを削除するだけです。

編集2:

最後に失敗したパッケージはnginx-fullログ の29行目を参照)なので、同様に削除する必要があります。

そのためには:Sudo apt -f remove nginx-full

Sudo apt autoremove --purgeから始めて、上記の手順を実行します。

1
FatalMerlin