码迷,mamicode.com
首页 > 其他好文 > 详细

nginx学习

时间:2016-07-09 14:57:42      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

1,centos 下nginx平滑升级

yum update nginx

执行命令前,首先配置nginx 源

[root@localhost ~]# vim /etc/yum.repos.d/nginx.repo

#nginx.repo
[nginx] name=nginx repo
baseurl=http://nginx.org/packages/centos/6/$basearch/
gpgcheck=0
enabled=1

 

*baseurl=http://nginx.org/packages/centos/6/$basearch/  这一句需要将里面的6修改成对应centos的版本号,如果是centos5则需要改成5

*根据你使用的操作系统不同,分别使用rhel或者centos替换os,使用5或者6替换osrelease,例如5.x或者6.x版本

 

*升级过程可能会遇到centos缓存问题;

Not using downloaded repomd.xml because it is older than what we have

Renewed Red Hat and updated the system with yum update, the following error:

 
Not using downloaded repomd.xml because it is older than what we have:
 
解决方案
 
yum clean all && yum check-update
 
清除centos缓存文件就可以了
 
2,启动与重启

启动nginx :nginx -c /etc/nginx/nginx.conf

关闭nginx:./sbin/nginx -s stop

nginx学习

标签:

原文地址:http://www.cnblogs.com/sign-ptk/p/5655455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!