美文网首页
极客时间 Nginx 学习笔记

极客时间 Nginx 学习笔记

作者: ragpo | 来源:发表于2020-06-11 09:29 被阅读0次

    01 | 课程综述

    https://github.com/geektime-geekbang/geektime-nginx

    02 | Nginx适用于哪些场景?

    1

    03 | Nginx出现的历史背景

    1

    04 | 为什么用Nginx:它的 5 个主要优点

    1

    05 | Nginx的四个主要组成部分

    1

    06 | Nginx的版本发布历史

    1

    07 | 选择哪一个Nginx发行版本?

    1
    2
    3

    08 | 编译出适合自己的Nginx

    1 2
    # wget http://nginx.org/download/nginx-1.18.0.tar.gz
    # cd nginx-1.18.0
    # 会报错说缺少一些模块,根据报错安装对应模块
    # ./configure --prefix=/root/nginx 
    # yum install pcre-devel -y
    # yum install zlib-devel -y
    # ./configure --prefix=/root/nginx
    .........................................
    Configuration summary
      + using system PCRE library
      + OpenSSL library is not used
      + using system zlib library
    
      nginx path prefix: "/root/nginx"
      nginx binary file: "/root/nginx/sbin/nginx"
      nginx modules path: "/root/nginx/modules"
      nginx configuration prefix: "/root/nginx/conf"
      nginx configuration file: "/root/nginx/conf/nginx.conf"
      nginx pid file: "/root/nginx/logs/nginx.pid"
      nginx error log file: "/root/nginx/logs/error.log"
      nginx http access log file: "/root/nginx/logs/access.log"
      nginx http client request body temporary files: "client_body_temp"
      nginx http proxy temporary files: "proxy_temp"
      nginx http fastcgi temporary files: "fastcgi_temp"
      nginx http uwsgi temporary files: "uwsgi_temp"
      nginx http scgi temporary files: "scgi_temp"
    
    # ls /root/
    anaconda-ks.cfg  nginx-1.18.0  nginx-1.18.0.tar.gz
    # make install
    # cd ../nginx
    # ll
    total 4
    drwxr-xr-x. 2 root root 4096 Jun  8 10:36 conf
    drwxr-xr-x. 2 root root   40 Jun  8 10:36 html
    drwxr-xr-x. 2 root root    6 Jun  8 10:36 logs
    drwxr-xr-x. 2 root root   19 Jun  8 10:36 sbin
    

    09 | Nginx配置文件的通用语法介绍

    1
    2
    3
    4
    5

    10 | Nginx命令行及演示:重载、热部署、日志切割

    1
    • 让vim编辑器能显示Nginx语法:
    cp  -r /root/nginx-1.18.0/contrib/vim/* ~/.vim/
    
    • 启动Nginx:
    ./nginx
    
    • 不停止服务的情况下重启:
    ./nginx -s reload
    
    • 热部署-热升级
    # cp nginx nginx.old
    # cp ../nginx .   # 确认替换
    
    # ps -ef | grep nginx
    root      7744     1  0 11:44 ?        00:00:00 nginx: master process ./sbin/nginx
    nobody    7745  7744  0 11:44 ?        00:00:00 nginx: worker process
    root      7834  1650  0 11:56 pts/0    00:00:00 grep --color=auto nginx
    # kill master进程,会启动新的master进程和work进程,但是老的不会被杀掉,流量会平滑的从老的切换到新的,老的master和worker继续存在,
    # kill USE2 7744
    # 使用kill -WINCH 7744优雅的关掉worker进程
    # kill -WINCH 7744
    # master进程还在,是为了做回退。
    

    11 | 用Nginx搭建一个可用的静态资源Web服务器


    1

    12 | 用Nginx搭建一个具备缓存功能的反向代理服务

    13 | 用GoAccess实现可视化并实时监控access日志


    1

    14 | 从网络原理来看SSL安全协议


    1
    2

    15 | 对称加密与非对称加密各自的应用场景


    1
    2

    16 | SSL证书的公信力是如何保证的?


    1
    2
    3

    17 | SSL协议握手时Nginx的性能瓶颈在哪里?

    1
    2
    3
    4
    5

    18 | 用免费SSL证书实现一个HTTPS站点

    1

    19 | 基于OpenResty用Lua语言实现简单服务

    1

    20 | Nginx的请求处理流程

    1

    21 | Nginx的进程结构

    1

    22 | Nginx的进程结构实例演示

    23 | 使用信号管理Nginx的父子进程

    1

    24 | reload重载配置文件的真相

    1
    2

    25 | 热升级的完整流程

    1
    2

    26 | 优雅地关闭worker进程

    1

    27 | 网络收发与Nginx事件间的对应关系

    1
    2
    3

    28 | Nginx网络事件实例演示

    29 | Nginx的事件驱动模型

    1

    30 | epoll的优劣及原理

    1

    31 | Nginx的请求切换

    1

    32 | 同步&异步、阻塞&非阻塞之间的区别

    • 留言

    同步: 指进程 调用接口时 需要等待接口处理完数据并相应进程才能继续执行。这里重点是数据处理完成 并返回
    异步: 指进程调用接口后,不必等待数据准备完成 可以继续执行。后续数据准备好通过一定的方式获得 例如回调。这里重点是 服务器也必须支持异步操作。不然没法返回数据。

    那么获取数据的方式不一样所以编程的复杂度也不一样。
    阻塞: 指的是 进程调用接口后 如果接口没有准备好数据,那么这个进程会被挂起 什么也不能做。直到有数据返回时唤醒。
    非阻塞: 就是进程调用接口后 如果接口没有准备好数据,进程也能处理后续的操作。但是需要不断的去轮询检查 数据是否已经处理完成。

    总结一下:

    同步异步针对的是 如果接收不到数据 当前代码逻辑的状态。

    阻塞非阻塞针对的是 如果接收不到数据 当前进程的状态。

    以超市买东西付款为例。

    同步阻塞:需要等收银员扫描完我的商品后才能付款 我才能干别的事情。再这之前我一直看着她。

    同步非阻塞:你先扫描 我先去看看别的东西。过一会看一眼服务员扫了多少了 也就是轮询。

    异步非阻塞: 我就在隔壁买个咖啡。扫完了你叫我一声。

    异步阻塞 应该不存在吧。

    1
    2

    相关文章

      网友评论

          本文标题:极客时间 Nginx 学习笔记

          本文链接:https://www.haomeiwen.com/subject/jjzrtktx.html