卸载Nginx的最佳方法是什么


137

我正在尝试使用naxsi将新模块添加到nginx,但是我应该重新安装nginx。删除nginx的更好方法是什么?

Answers:


268

sudo apt-get remove nginx nginx-common #删除除配置文件外的所有文件。

sudo apt-get purge nginx nginx-common #删除所有内容。

sudo apt-get autoremove #在使用上述任何命令之后,请使用此命令以删除nginx使用的不再需要的依赖项。


16
rm -rf /etc/nginx也删除conf文件。
scarver2

1
@ scarver2这很旧,但这就是apt-get purge功能。
0x7c0 2014年

3
也可以尝试sudo apt-get purge nginx-common
Francisco Luz 2015年

3
使用Ubuntu 14.04,现在是:sudo apt-get remove nginx-full nginx-common
越南

如果您的/etc/apt/source.list中有文件,也请删除您的ppa存档
Balman Rawat
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.