ubuntu下使用apt方式安装、卸载nginx
程序员文章站
2024-01-06 10:34:52
...
ubuntu和debain下的apt方式安装软件很方便,特别是对于新手安装和卸载nginx。
由于nginx不能动态添加模块,所以会经常安装和卸载、升级。
由于nginx不能动态添加模块,所以会经常安装和卸载、升级。
- apt安装nginx方法
sudo apt-add-repository ppa:nginx/development
sudo apt-get update
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.
卸载不再需要的nginx依赖程序
sudo apt-get autoremove
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了 ubuntu下使用apt方式安装、卸载nginx,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
ubuntu下使用apt方式安装、卸载nginx
-
ubuntu下apt-get安装和彻底卸载mysql详解
-
[视频教程] ubuntu系统下以守护进程方式安装使用Redis
-
ubuntu 16.04下Nginx的原理、安装配置和卸载操作讲解
-
ubuntu下apt-get安装和彻底卸载mysql详解
-
[视频教程] ubuntu系统下以守护进程方式安装使用Redis
-
ubuntu使用apt-get安装最新稳定版nginx的方法
-
ubuntu使用apt-get安装最新稳定版nginx的方法
-
Ubuntu16.04下apt-get安装nginx+php,根目录访问php文件,显示404
-
ubuntu下使用apt方式安装、卸载nginx