zoukankan      html  css  js  c++  java
  • yum方式安装nginx

    [root@huhu yum.repos.d]# rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
    Retrieving http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
    warning: /var/tmp/rpm-tmp.AKQkrL: Header V4 RSA/SHA1 Signature, key ID 7bd9bf62: NOKEY
    Preparing... ########################################### [100%]
    1:nginx-release-centos ########################################### [100%]
    [root@huhu yum.repos.d]# ll
    total 16
    -rw-r--r--. 1 root root 1926 Jul 3 2011 CentOS-Base.repo
    -rw-r--r--. 1 root root 637 Jul 3 2011 CentOS-Debuginfo.repo
    -rw-r--r--. 1 root root 626 Jul 3 2011 CentOS-Media.repo
    -rw-r--r--. 1 root root 113 Oct 14 2011 nginx.repo
    [root@huhu ~]# yum info nginx
    Loaded plugins: fastestmirror, refresh-packagekit
    Loading mirror speeds from cached hostfile
    * base: mirrors.yun-idc.com
    * extras: mirrors.yun-idc.com
    * updates: mirrors.yun-idc.com
    Available Packages
    Name : nginx
    Arch : i386
    Version : 1.4.1
    Release : 1.el6.ngx
    Size : 317 k
    Repo : nginx
    Summary : nginx is a high performance web server
    URL : http://nginx.org/
    License : 2-clause BSD-like license
    Description: nginx [engine x] is an HTTP and reverse proxy server, as well as
    : a mail proxy server


    # yum install nginx -y
    Loaded plugins: fastestmirror, refresh-packagekit
    Loading mirror speeds from cached hostfile
    * base: mirrors.yun-idc.com
    * extras: mirrors.yun-idc.com
    * updates: mirrors.yun-idc.com
    Setting up Install Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package nginx.i386 0:1.4.1-1.el6.ngx set to be updated
    --> Finished Dependency Resolution

    Dependencies Resolved

    ===============================================================================================================================================
    Package Arch Version Repository Size
    ===============================================================================================================================================
    Installing:
    nginx i386 1.4.1-1.el6.ngx nginx 317 k

    Transaction Summary
    ===============================================================================================================================================
    Install 1 Package(s)
    Upgrade 0 Package(s)

    Total download size: 317 k
    Installed size: 734 k
    Downloading Packages:
    [root@huhu ~]# which nginx
    /usr/sbin/nginx
    [root@huhu ~]# /usr/sbin/nginx -v
    nginx version: nginx/1.4.1
    [root@huhu ~]# ps aux|grep nginx
    root 15399 0.0 0.0 4308 724 pts/0 S+ 11:15 0:00 grep nginx
    [root@huhu ~]# service nginx start
    Starting nginx: [ OK ]
    [root@huhu ~]# ps aux|grep nginx
    root 15410 0.0 0.0 7196 772 ? Ss 11:15 0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
    nginx 15411 0.0 0.0 7336 1132 ? S 11:15 0:00 nginx: worker process
    root 15414 0.0 0.0 4308 724 pts/0 S+ 11:15 0:00 grep nginx

  • 相关阅读:
    改进ls的实现(课下作业)
    stat命令的实现-mysate
    (选做)实现mypwd
    2019-2020-1 20175209 20175213 20175214 实验五 通讯协议设计
    2019-2020-1 20175209 20175213 20175214 实验四 外设驱动程序设计
    2019-2020-1 20175209 20175213 20175214 实验三 并发程序
    2019-2020-1 20175209 20175213 20175214 实验三 并发程序
    2019-2020-1 20175209 20175213 20175214 实验一 开发环境的熟悉
    2018-2019-2 20175213实验五 《网络编程与安全》实验报告
    2018-2019-2 20175213实验四 《Android开发基础》实验报告
  • 原文地址:https://www.cnblogs.com/taosim/p/3107771.html
Copyright © 2011-2022 走看看