1.刪除nginx,,-purge包括配置文件sudo apt-get --purge remove nginx 2.移除全部不使用的軟件包sudo apt-get autoremove 3.羅列出與nginx相關(guān)的軟件并刪除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正在運(yùn)行的進(jìn)程,,如果有就kill掉ps -ef |grep nginx sudo kill -9 XXX 5.全局查找與nginx相關(guān)的文件sudo find / -name nginx* sudo rm -rf file 6.刪除列出的所有文件sudo rm -rf file 7.重裝nginxsudo apt-get update sudo apt-get install nginx nginx的其他內(nèi)容測(cè)試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文件,,重新啟動(dòng)服務(wù)即可
|