Ubuntu下卸载nginx

    sudo apt-get remove nginx nginx-common # 卸载删除除了配置文件以外的所有文件。
    sudo apt-get purge nginx nginx-common # 卸载所有东东,包括删除配置文件。
    sudo apt-get autoremove # 在上面命令结束后执行,主要是卸载删除Nginx的不再被使用的依赖包。
    sudo apt-get remove nginx-full nginx-common #卸载删除两个主要的包。

参考资料

发布了30 篇原创文章 · 获赞 86 · 访问量 38万+

猜你喜欢

转载自blog.csdn.net/gongchenyu/article/details/84349870