ubuntu 16.04.1 nginx徹底刪除
阿新 • • 發佈:2020-12-22
技術標籤:y運維資料
轉載:https://www.cnblogs.com/xiaoquangege/p/9662935.html
ubuntu 16.04.1 nginx徹底刪除與重新安裝
1.刪除nginx,-purge包括配置檔案
sudo apt-get --purge remove nginx
2.移除全部不使用的軟體包
sudo apt-get autoremove
3.羅列出與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
4.檢視nginx正在執行的程序,如果有就kill掉
ps -ef |grep nginx
sudo kill -9 XXX
5.全域性查詢與nginx相關的檔案
sudo find / -name nginx*
sudo rm -rf file
6.刪除列出的所有檔案
sudo rm -rf file
7.重灌nginx
sudo apt-get update
sudo apt-get install nginx
nginx的其他內容
測試nginx配置是否正確
sudo nginx -t
nginx重啟
sudo service nginx restart
nginx: [emerg] a duplicate default server for 0.0.0.0:80 in /etc/nginx/sites-enabled/ms.recipe_box.com.conf:2
刪除/etc/nginx/sites-available/default檔案,重新啟動服務即可