虚位以待(AD)
虚位以待(AD)
首页 > 操作系统 > Ubuntu/Debian > VPS服务器使用apt-get方式升级nginx(ubuntu/debian)

VPS服务器使用apt-get方式升级nginx(ubuntu/debian)
类别:Ubuntu/Debian   作者:码皇   来源:互联网   点击:

打开 etc apt sources list 添加下面两行Ubuntu :deb http: nginx org packages ubuntu lucid nginxdeb-src http: nginx org packages ubuntu lucid nginxdebian:deb http: nginx org package

打开 /etc/apt/sources.list 添加下面两行

Ubuntu :
deb http://nginx.org/packages/ubuntu/ lucid nginx
deb-src http://nginx.org/packages/ubuntu/ lucid nginx

debian:
deb http://nginx.org/packages/debian/ squeeze nginx
deb-src http://nginx.org/packages/debian/ squeeze nginx

更新包、安装nginx
apt-get update
apt-get install nginx

提示:

Configuration file `/etc/nginx/nginx.conf'
==> Modified (by you or by a script) since installation.
==> Package distributor has shipped an updated version.
What would you like to do about it ? Your options are:
Y or I : install the package maintainer's version
N or O : keep your currently-installed version
D : show the differences between the versions
Z : background this process to examine the situation
The default action is to keep your current version.
*** nginx.conf (Y/I/N/O/D/Z) [default=N] ?

这时输入N,保留之前的nginx.conf配置。

完成安装后,重启nginx
service nginx restart

完成更新,可以输入以下命令查看当前版本。
nginx -v

相关热词搜索: 服务器 使用 apt-get