当前位置:Gxlcms > PHP教程 > CTO之nginx在ubuntu下删除记录

CTO之nginx在ubuntu下删除记录

时间:2021-07-01 10:21:17 帮助过:4人阅读

ubuntu和debain下的apt方式安装软件很方便,特别是对于新手安装和卸载nginx。

由于nginx不能动态添加模块,所以会经常安装和卸载、升级。

安装nginx 在ubuntu下直接运行sudo apt-get install nginx.

apt卸载nginx方法
卸载方法1.
# 删除nginx,保留配置文件
sudo apt-get remove nginx
#删除配置文件
rm -rf /etc/nginx

卸载方法2.
#删除nginx连带配置文件
sudo apt-get purge nginx # Removes everything.

还需要再执行sudo apt-get autoremove 到时命令行中会有提示。

#卸载不再需要的nginx依赖程序
sudo apt-get autoremove


以上就介绍了CTO之nginx在ubuntu下删除记录,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行