• mac pro M1(ARM)安装:Nginx安装并开启错误、访问日志


    0.引言

    最近正好在mac m1中安装Nginx,特作记录,以供后续参考

    1. homebrew方式安装

    mac m1安装Nginx最方便快捷的方式是通过homebrew安装,当前前提是需要先安装homebrew

    1、安装Nginx,执行指令

    brew install nginx
    
    • 1

    在这里插入图片描述
    如上图所示可以看到
    Nginx配置文件路径:/opt/homebrew/etc/nginx/nginx.conf
    安装路径:/opt/homebrew/Cellar/nginx

    2、启动Nginx,执行指令

    nginx
    
    • 1

    3、浏览器方式localhost:8080

    在这里插入图片描述
    安装成功!

    1.1 开启错误日志

    1、修改配置文件

    vim /opt/homebrew/etc/nginx/nginx.conf
    
    • 1

    2、开启错误日志,这里提供了三种等级,这里我为了测试,直接开启info等级

    #error_log  logs/error.log;
    #error_log  logs/error.log  notice;
    error_log  logs/error.log  info;
    
    • 1
    • 2
    • 3

    3、重启Nginx

    nginx -s reload
    
    • 1

    其他指令

    # 关闭Nginx
    nginx -s stop
    
    • 1
    • 2

    4、如果第一次开启可能会报错

    nginx: [emerg] open() "/opt/homebrew/Cellar/nginx/1.21.6/logs/error.log" failed (2: No such file or directory)

    解决办法很简单,只需要将logs文件夹创建出来就好了

    mkdir /opt/homebrew/Cellar/nginx/1.21.6/logs
    
    • 1

    5、查看日志

    cat /opt/homebrew/Cellar/nginx/1.21.6/logs/error.log
    
    • 1

    在这里插入图片描述

    1.2 开启access日志

    access log是nginx的访问日志,其记录了每个用户访问nginx服务的日志信息,通过该日志我们可以分析用户的浏览行为,各子系统的访问热度

    要开启access很简单,只需要开启log_formataccess_log参数即可

    1、修改配置文件

    vim /opt/homebrew/etc/nginx/nginx.conf
    
    • 1

    修改内容

    http {
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        access_log  logs/access.log  main;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    参数说明
    $remote_addr记录访问网站的客户端地址
    $http_x_forwarded_for当前端有代理服务器时,设置web节点记录客户端地址的配置
    $remote_user用来记录客户端用户名称
    $time_local用来记录访问时间与时区
    $request用来记录请求的http的方式与url
    $request_time用来记录请求时间
    $status用来记录请求状态;成功是200,未找到是404
    $body_bytes_sent记录发送给客户端文件主体内容大小
    $http_referer用来记录从那个页面链接访问过来的
    $http_user_agent记录客户端访问信息,例如:浏览器、手机客户端等

    2、重启nginx

    nginx -s reload
    
    • 1

    3、查看日志

    cat /opt/homebrew/Cellar/nginx/1.21.6/logs/access.log
    
    • 1

    在这里插入图片描述

  • 相关阅读:
    开绕组电机零序Bakc EMF-based无感控制以及正交锁相环inverse Park-based
    机器人命令表设计
    【python】直方图正则化详解和示例
    草稿草稿草稿,python 和VBA的差别对比汇总 收集ing
    俄罗斯方块游戏开发教程5:形状碰撞检测(下)
    查看指定 SAP CRM One Order 的 note 数据
    go safe template不转义
    设计模式使用场景实现示例及优缺点(结构型模式——代理模式、外观模式)
    东北大学工程训练CNC加工中心(坤图)
    微信小程序地图
  • 原文地址:https://blog.csdn.net/qq_24950043/article/details/125567521