zoukankan      html  css  js  c++  java
  • CentOS7 安装 NGINX

    安装所需环境

    Nginx 是 C语言 开发,建议在 Linux 上运行,当然,也可以安装 Windows 版本,


    一. gcc 安装
    安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装:

      1 yum install gcc-c++
    

    二. PCRE pcre-devel 安装
    PCRE(Perl Compatible Regular Expressions) 是一个Perl库,包括 perl 兼容的正则表达式库。nginx 的 http 模块使用 pcre 来解析正则表达式,所以需要在 linux 上安装 pcre 库,pcre-devel 是使用 pcre 开发的一个二次开发库。nginx也需要此库。命令:

      1 yum install -y pcre pcre-devel

    三. zlib 安装
    zlib 库提供了很多种压缩和解压缩的方式, nginx 使用 zlib 对 http 包的内容进行 gzip ,所以需要在 Centos 上安装 zlib 库。

      1 yum install -y zlib zlib-devel

    四. OpenSSL 安装
    OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及 SSL 协议,并提供丰富的应用程序供测试或其它目的使用。
    nginx 不仅支持 http 协议,还支持 https(即在ssl协议上传输http),所以需要在 Centos 安装 OpenSSL 库。

      1 yum install -y openssl openssl-devel

    官网下载

    1.直接下载.tar.gz安装包,地址:https://nginx.org/en/download.html

    image_thumb[1]

    2.使用wget命令下载(推荐)。确保系统已经安装了wget,如果没有安装,执行 yum install wget 安装。

    注意:执行下载命令时可以先切换到要存放的路径 然后执行下载命令

    image_thumb[6]

    我下载的是1.12.0版本,这个是目前的稳定版。

    解压

    依然是直接命令:

      1 tar -zxvf nginx-1.12.0.tar.gz
      2 cd nginx-1.12.0

    配置

    其实在 nginx-1.12.0 版本中你就不需要去配置相关东西,默认就可以了。当然,如果你要自己配置目录也是可以的。
    1.使用默认配置

      1 ./configure

    2.自定义配置(不推荐)

      1 ./configure 
      2 --prefix=/usr/local/nginx 
      3 --conf-path=/usr/local/nginx/conf/nginx.conf 
      4 --pid-path=/usr/local/nginx/conf/nginx.pid 
      5 --lock-path=/var/lock/nginx.lock 
      6 --error-log-path=/var/log/nginx/error.log 
      7 --http-log-path=/var/log/nginx/access.log 
      8 --with-http_gzip_static_module 
      9 --http-client-body-temp-path=/var/temp/nginx/client 
     10 --http-proxy-temp-path=/var/temp/nginx/proxy 
     11 --http-fastcgi-temp-path=/var/temp/nginx/fastcgi 
     12 --http-uwsgi-temp-path=/var/temp/nginx/uwsgi 
     13 --http-scgi-temp-path=/var/temp/nginx/scgi

    注:将临时文件目录指定为/var/temp/nginx,需要在/var下创建temp及nginx目录

    编译安装

      1 make
      2 make install

    安装完之后查找安装路径:

      1 whereis nginx

    image_thumb[8]

      1 cd /usr/local/nginx 

    image_thumb[10]

    一般的 NGINX 配置都在 conf文件夹中  启动NGINX 在 sbin 文件夹里  在启动NGINX要指定配置文件

    如果是默认配置安装的NGINX 

      1 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

    使用nginx -c的参数指定nginx.conf文件的位置

    启动、停止nginx

      1 cd /usr/local/nginx/sbin/
      2 ./nginx
      3 ./nginx -s stop
      4 ./nginx -s quit
      5 ./nginx -s reload
    启动时报80端口被占用:
      1 nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
    查询nginx进程:
      1 ps aux|grep nginx

    image_thumb[12]

    停下nginx进程    再强制杀掉进程id kill NginxPid

    重新执行启动命令


    设置开机自己启动

      1 vim /etc/rc.local
      1  /usr/local/nginx/sbin/nginx


    image_thumb[13]

    设置执行权限:

      1 chmod 755 /etc/rc.local

    nginx就安装完毕了,启动、停止、重启操作也都完成了,


    归类 : 运维&软件安装

  • 相关阅读:
    eclipse中不能识别enum
    The source attachment does not contain the source for the file Activity.class
    ASP.NET应用程序脱机问题
    鱼仔系统部署教程
    鱼仔系统开发教程
    mysql innodb cluster 无感知集群
    Mysql 8.0 新特性测试
    随笔1
    音频输出格式
    2012.02.03(S3C6410中文手册笔记)(一)
  • 原文地址:https://www.cnblogs.com/lz1996/p/14474099.html
Copyright © 2011-2022 走看看