Heim >Backend-Entwicklung >PHP-Tutorial >ubuntu下使用apt方式安装、卸载nginx

ubuntu下使用apt方式安装、卸载nginx

WBOY
WBOYOriginal
2016-07-28 08:27:111311Durchsuche

ubuntu和debain下的apt方式安装软件很方便,特别是对于新手安装和卸载nginx。
由于nginx不能动态添加模块,所以会经常安装和卸载、升级。

  • apt安装nginx方法
<code>sudo apt<span>-add</span><span>-repository</span> ppa:nginx/development
sudo apt<span>-get</span> update
sudo apt<span>-get</span> install nginx</code>
  • apt卸载nginx方法

卸载方法1.
删除nginx,保留配置文件

<code><span>sudo</span> apt-get remove nginx</code>

删除配置文件

<code>rm <span>-rf</span> /etc/nginx</code>

卸载方法2.
删除nginx连带配置文件

<code><span>sudo</span> apt-get purge nginx <span># Removes everything.</span></code>

卸载不再需要的nginx依赖程序

<code><span>sudo</span> apt-get autoremove</code>
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了 ubuntu下使用apt方式安装、卸载nginx,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn