44来自博哥的Nginxyum安装和编译安装

1.1 什么是Nginx

Nginx (“engine x”) 是一个开源的、支持高性能、高并发的WWW服务和代理服务软件。它是由俄罗斯人IgorSysoev开发的,最初被应用在俄罗斯的大型网站www.rambler.ru上。后来作者将源代码以类BSD许可证的形式开源出来供全球使用。

1.2 Nginx的主要功能

Nginx的主要功能有以下三点:

  1. 网页服务:Nginx是一个支持高性能、高并发的Web服务软件,它自身是静态Web服务,并且还支持动态Web服务。
  2. 反向代理/负载均衡:Nginx可以作为Web服务、PHP等动态服务及Memcached缓存的代理服务器。
  3. 前端业务数据缓存:Nginx通过自身的proxy_cache模块实现数据缓存的功能。

1.3 Nginx的特点

Nginx服务器具有以下特色及优点:

  1. 支持高并发:能支持几万并发连接(特别是静态小文件业务环境)。
  2. 资源消耗少:在3万并发连接下,开启10个Nginx线程消耗不到200MB内存。
  3. 可以做HTTP反向代理及加速缓存,即负载均衡功能,内置对RS节点服务器健康检查功能,这相当于专业的haproxy软件或lvs的功能。
  4. 具备squid等专业缓存软件等的缓存功能。
  5. 支持异步网络I/O事件模型epoll。

1.4 Nginx主要应用场景

1、静态Web服务器
  使用Nginx运行HTML、JS、CSS、小图片等静态数据(此功能类似lighttpd软件)。
2、配合运行动态Web服务器
Nginx结合FastCGI运行PHP等动态程序(例如使用fastcgi_pass方式)。
Nginx结合proxy_pass支持Java动态程序(例如使用tomcat/resin服务)。
Nginx结合uwsgi_pass支持Python。
3、反向代理/负载均衡:http负载均衡
4、做Web缓存服务器(把文件放入内存里)

1.5 反向代理与负载均衡

  1. 正向代理:由内向外。代替局域网内PC,请求外部应用服务。
  2. 反向代理:由外向内。代替外部的用户请求内部的应用服务器。
  3. 负载均衡:将请求转发、效率高。

1.6 软件安装方法

Linux系统中的安装软件方法:

  1. rpm安装
    简单、快速,但是依赖多,解决依赖困难繁琐。
  2. yum安装
    简单、快速、自动解决依赖。但是不能选择软件版本或软件存放路径。
  3. 编译安装(源码编译)
    慢、复杂、需要GCC编译器,但是可以自定义安装(版本、软件路径)
  4. 将源码制作成rpm,然后放到yum仓库,实现yum自动安装。
    第一次慢、复杂,但是以后安装快,可以自定义安装(版本、软件路径)
  5. 二进制安装
    需要制作RPM和 YUM仓库搭建
    rpm包定制:http://blog.oldboyedu.com/autodeploy-rpm/
    yum仓库搭建:http://blog.oldboyedu.com/autodeploy-yum/

1.7 Nginx安装

1.7.1 两种安装方法

1、yum安装
使用epel源:版本低。
使用nginx官方源:版本高。
2、编译安装

1.7.2 配置官方源yum安装

配置官方yum源:

[root@web ~]$ vim /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

安装并启动服务:

[root@web01 ~]$ yum install nginx -y          <===安装nginx
[root@web01 ~]$ rpm -qa nginx                 <===查看安装包
nginx-1.16.0-1.el7.ngx.x86_64
[root@web01 ~]$ systemctl start nginx         <===启动服务
[root@web01 ~]$ systemctl enable nginx        <===服务开机自启动
[root@web01 ~]$ systemctl status nginx        <===查看状态
[root@web01 ~]$ netstat -lntup|grep nginx     <===查看端口
tcp        0      0 0.0.0.0:80      0.0.0.0:*   LISTEN   8509/nginx: master

1.7.3 编译安装

1、下载nginx压缩包及依赖:

[root@web01 ~]$ mkdir -p /server/tools    <===创建安装目录
[root@web01 ~]$ cd /server/tools
[root@web01 /server/tools]$ wget http://nginx.org/download/nginx-1.16.0.tar.gz    <===下载压缩包
[root@web01 /server/tools]$ yum install pcre pcre-devel openssl openssl-devel -y  <===安装依赖

2、编译安装步骤

[root@web01 /server/tools]$ tar xf nginx-1.16.0.tar.gz                           <===解压缩
[root@web01 /server/tools]$ cd nginx-1.16.0/                                     <===切换目录
[root@web01 /server/tools/nginx-1.16.0]$ useradd -s /sbin/nologin www -M         <===创建不可登录用户且不创建家目录
[root@web01 /server/tools/nginx-1.16.0]$ id www                                  <===查看用户信息
[root@web01 /server/tools/nginx-1.16.0]$ ./configure  --user=www --group=www --prefix=/application/nginx-1.16.0/ --with-http_stub_status_module  --with-http_ssl_module --with-pcre    <===定制模块
[root@web01 /server/tools/nginx-1.16.0]$ make                                    <===编译
[root@web01 /server/tools/nginx-1.16.0]$ make install                            <===安装
[root@web01 /server/tools/nginx-1.16.0]$ ln -s /application/nginx-1.16.0/ /application/nginx    <===创建软链接
[root@web01 /server/tools/nginx-1.16.0]$ /application/nginx/sbin/nginx           <===启动nginx服务
[root@web01 /server/tools/nginx-1.16.0]$ netstat -lntup|grep nginx               <===查看端口

注意:
1)每一步结尾直接echo $?验证是否正确。返回0代表步骤正确
2)验证最终的安装是否正确。

[root@web02 /server/tools/nginx-1.16.0]$ wget 10.0.0.8
--2019-04-30 17:37:41--  http://10.0.0.8/
正在连接 10.0.0.8:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:319 [text/html]
正在保存至: “index.html.1”

100%[===================================================================>] 319         --.-K/s 用时 0s      

2019-04-30 17:37:41 (3.17 MB/s) - 已保存 “index.html.1” [319/319])

configure参数的作用

参数 说明
--prefix=PATH 路径
--user=USER 用户
--group=GROUP
--with-pcre 伪静态
--with-http_stub_status_module 状态
--with-http_ssl_module 加密 443

目录下各文件说明:

[root@web02 /application/nginx]# tree
├── conf
│ ├── fastcgi.conf            #配合php接口的置参数
│ ├── fastcgi.conf.default
│ ├── fastcgi_params 
│ ├── fastcgi_params.default
│ ├── koi-utf
│ ├── koi-win
│ ├── mime.types              #媒体类型
│ ├── mime.types.default
│ ├── nginx.conf              #主配置文件
│ ├── nginx.conf.default
│ ├── scgi_params
│ ├── scgi_params.default     #和动态服务的接口配置参数
│ ├── uwsgi_params
│ ├── uwsgi_params.default    #配合Python接口的配置参数
│ └── win-utf
├── fastcgi_temp
├── html                      #默认站点目录。  
│ ├── 50x.html
│ └── index.html          #默认的首页,10.0.0.8不指定文件,默认加载index.html首页。
├── logs
│ ├── access.log              #访问日志
│ ├── error.log               #Nginx错误日志。
│ └── nginx.pid               #进程号对应文件。
├── sbin
│ └── nginx                   #启动命令。

你可能感兴趣的:(44来自博哥的Nginxyum安装和编译安装)