1. 程式人生 > >Ubuntu下完全解除安裝nginx伺服器

Ubuntu下完全解除安裝nginx伺服器

刪除nginx,–purge包括配置檔案

sudo apt-get --purge remove nginx

自動移除全部不使用的軟體包

sudo apt-get autoremove

列出與nginx相關的軟體 並刪除顯示的軟體

dpkg --get-selections|grep nginx

sudo apt-get --purge remove nginx
sudo apt-get --purge remove nginx-common
sudo apt-get --purge remove nginx-core

再次執行

dpkg --get-selections|grep nginx

which nginx # 不在顯示nginx

這樣就可以完全解除安裝掉nginx包括配置檔案
注意點:首先需要停止nginx的服務

sudo service nginx stop