Ubuntu
Nginx 未滿足的依賴項,無法升級/刪除
最近我在我的 Ubuntu 伺服器上安裝了 newrelic,之後我自動開始在日誌中出現錯誤,並且載入 newrelic 擴展失敗。
我嘗試升級/刪除 newrelic 但在這兩種情況下我都收到錯誤:
ubuntu@ip:/etc/php$ sudo apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to correct these. The following packages have unmet dependencies: nginx : Depends: nginx-core (< 1.10.0-0ubuntu0.16.04.4.1~) but 1.10.3-0ubuntu0.16.04.1 is installed or nginx-full (< 1.10.0-0ubuntu0.16.04.4.1~) but it is not installed or nginx-light (< 1.10.0-0ubuntu0.16.04.4.1~) but it is not installed or nginx-extras (< 1.10.0-0ubuntu0.16.04.4.1~) but it is not installed E: Unmet dependencies. Try using -f.
我嘗試執行
sudo apt-get -f install
,但它導致輸出:ubuntu@ip:/etc/php$ sudo apt-get -f install Reading package lists... Done Building dependency tree Reading state information... Done Correcting dependencies... Done The following packages were automatically installed and are no longer required: linux-headers-4.4.0-78 linux-headers-4.4.0-78-generic linux-headers-4.4.0-79 linux-headers-4.4.0-79-generic linux-image-4.4.0-78-generic linux-image-4.4.0-79-generic nginx-common nginx-core Use 'sudo apt autoremove' to remove them. The following additional packages will be installed: nginx The following packages will be upgraded: nginx 1 upgraded, 0 newly installed, 0 to remove and 9 not upgraded. 7 not fully installed or removed. Need to get 787 kB of archives. After this operation, 2,777 kB of additional disk space will be used. Do you want to continue? [Y/n] y WARNING: The following packages cannot be authenticated! nginx Install these packages without verification? [y/N] y Get:1 http://nginx.org/packages/ubuntu xenial/nginx amd64 nginx amd64 1.12.1-1~xenial [787 kB] Fetched 787 kB in 2s (275 kB/s) (Reading database ... 138963 files and directories currently installed.) Preparing to unpack .../nginx_1.12.1-1~xenial_amd64.deb ... Unpacking nginx (1.12.1-1~xenial) over (1.10.0-0ubuntu0.16.04.4) ... dpkg: error processing archive /var/cache/apt/archives/nginx_1.12.1-1~xenial_amd64.deb (--unpack): trying to overwrite '/etc/nginx/uwsgi_params', which is also in package nginx-common 1.10.3-0ubuntu0.16.04.1 dpkg-deb: error: subprocess paste was killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/nginx_1.12.1-1~xenial_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1)
我確實找到了一篇建議刪除 nginx 然後重新安裝的文章。這是一個具有持續流量的生產伺服器,所以我想避免解除安裝 nginx 的風險,然後再失敗。我已經更改了 nginx 的配置,並且沒有註意到我的所有更改。有什麼安全的方法可以解決這個問題嗎?
在研究和試驗了很多東西之後,我找不到任何解決方案,最後按照這個https://askubuntu.com/questions/243568/nginx-dependency-problem-trying-to-upgrade
我做了以下工作:
- 我做了一個備份
/etc/nginx
- 然後刪除了nginx
- 重新安裝nginx
- 然後因為它被
/etc/nginx
備份文件夾替換並開始工作我有大約 15-20 分鐘的停機時間來做這一切。
這可以通過將 force-overwrite 傳遞給底層 dpkg 程序來解決。這是我使用的命令:
sudo apt -o Dpkg::Options::="--force-overwrite" upgrade nginx
來源:https ://askubuntu.com/questions/56761/force-apt-get-to-overwrite-file-installed-by-another-package