Linux下nginx安装

centos直接yum安装nginx

Ubuntu下安装nginx,直接apt-get install nginx就行了,很方便。
1.rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
2.查看yum的nginx信息
yum info nginx

3,安装并启动nignx
[root@server ~]# yum install nginx
[root@server ~]# service nginx start
Starting nginx:                                            [  OK  ]

4,然后进入浏览器,输入http://192.168.0.161/测试,如果看到

service nginx reload
nginx -s reload

nginx -t -c /usr/nginx/conf/nginx.conf
或者
nginx -t (推荐)

/usr/nginx/sbin/nginx -t
==============================
[html] view plaincopy
 
  1. 自动安装选择最快的源  
  2. [root@localhost ~]# yum install yum-fastestmirror  
这里 我已经安装过,运行结果如下

 

 

[html] view plaincopy
 
  1. Loaded plugins: fastestmirror, refresh-packagekit, security  
  2. Loading mirror speeds from cached hostfile  
  3.  * base: ftp.riken.jp  
  4.  * epel: mirrors.zju.edu.cn  
  5.  * extras: ftp.riken.jp  
  6.  * updates: ftp.riken.jp  
  7. Setting up Install Process  
  8. Package yum-plugin-fastestmirror-1.1.30-30.el6.noarch already installed and latest version  

 

安装nginx

yum install nginx 

 

[html] view plaincopy
 
  1. [root@localhost ~]# yum install nginx  
  2. Loaded plugins: fastestmirror, refresh-packagekit, security  
  3. Loading mirror speeds from cached hostfile  
  4.  * base: ftp.riken.jp  
  5.  * epel: mirrors.opencas.cn  
  6.  * extras: ftp.riken.jp  
  7.  * updates: ftp.riken.jp  
  8. Setting up Install Process  
  9. Package nginx-1.8.0-1.el6.ngx.x86_64 already installed and latest version  

 

 

平滑升级

yum update nginx

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

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

[html] view plaincopy
 
  1. #nginx.repo  
  2.   
  3. [nginx]  
  4. name=nginx repo  
  5. baseurl=http://nginx.org/packages/centos/6/$basearch/  
  6. gpgcheck=0  
  7. enabled=1  

执行: yum update nginx  

  1.   
  2. Complete!  
  3. [root@localhost ~]# service nginx stop  
  4. 停止 nginx:                                               [确定]  
  5. [root@localhost ~]# service nginx start  
  6. 正在启动 nginx:                                           [确定]  
  7. [root@localhost ~]# nginx -v  
  8. nginx version: nginx/1.8.0  

你可能感兴趣的:(Linux下nginx安装)