在Ubuntu 10.04.3 LTS远程计算机上卸载nginx


0

我得到了一个服务器来设置,但是这个服务器没有被重置,并且提供者在重置它时非常慢,所以我必须完全卸载它拥有的一些东西,其中一个是nginx。

由于多次安装,我在本地机器上为nginx进行设置时遇到了一些问题,所以我现在想避免同样的错误。

问题是,我不知道如何在这里安装nginx,我需要删除它。

当我通过SSH访问服务器时,我只有这个文件夹$HOME/backups/nginx

知道怎么卸载这个?每当我谷歌它只出现apt-get uninstall等等。

Answers:


1

问题是,我不知道如何在这里安装nginx,我需要删除它。

检查包管理器是否知道nginx,如果是,请使用该包管理器将其卸载。

dpkg –l \*nginx*   # lists packages whose name contains "nginx"
dpkg -L nginx      # lists files in package "nginx"

请参阅Sourceforge教程

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.