目录
- 一、安装 Nginx
- 1、先安装 Brew
- 2、再安装 Nginx
- 二、常用的 Nginx 命令
- 三、简单的 Nginx 配置
- 四、查看日志的 Linux 命令
- 1、查看日志的 Linux 命令
- 2、实时查看项目运行时打印的日志
一、安装 Nginx
推荐使用 HomeBrew 来安装 Nginx。
1、先安装 Brew
详见:HomeBrew 安装与应用
2、再安装 Nginx
brew install nginx
二、常用的 Nginx 命令
nginx # 启动 Nginx
nginx -s reload # 重启 Nginx
nginx -s stop # 终止 Nginx
三、简单的 Nginx 配置
首先在命令窗口里执行下面的命令来进入 homebrew 的安装目录:
cd /opt/homebrew/
然后,执行下面的命令在 vscode 中打开 homebrew:
code .
然后打开 “/etc/nginx” 目录下的 nginx.conf 文件,可以看到其默认的有效的配置(被注视掉的配置已被删除):
worker_processes 1;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;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;sendfile on;keepalive_timeout 65;server {listen 8080;server_name localhost;location / {root html;index index.html index.htm;}# redirect server error pages to the static page /50x.htmlerror_page 500 502 503 504 /50x.html;location = /50x.html {root html;}}include servers/*;
}
我们简单配置一下:
server {listen 1001;server_name localhost;# 日志access_log logs/test.access.log main;error_log logs/test.error.log warn;# APIlocation ~ /testApi/(.*){proxy_pass http://192.168.x.xxx:xxxx/testApi/$1?$args;}# UIlocation / {root /Users/XXX/xm/Test;try_files $uri $uri/ /index.html;index index.html index.htm;}
}
四、查看日志的 Linux 命令
在本地通过 Nginx 运行项目后,很想查看项目的运行日志,于是我们先来了解下查看日志的 Linux 命令。
1、查看日志的 Linux 命令
命令 | 描述 | 案例 |
---|---|---|
tail | tail 命令用于显示文件的末尾内容,默认显示文件的最后 10 行。 | 示例:tail -f /var/log/nginx/access.log 用于实时查看 Nginx 的访问日志。 |
head | head 命令用于显示文件的开头内容,默认显示文件的前 10 行。 | 示例:head -n 20 /var/log/syslog 显示系统日志文件的前 20 行。 |
less | less 命令用于分页查看文件内容,适用于大文件查看。 | 示例:less /var/log/messages 查看系统消息日志文件。 |
cat | cat 命令用于连接文件并打印到标准输出。 | 示例:cat /var/log/auth.log 显示认证日志文件的内容。 |
grep | grep 命令用于在文件中搜索指定模式的文本,并将匹配的行打印出来。 | 示例:grep “ERROR” /var/log/nginx/error.log 查找 Nginx 错误日志中包含 “ERROR” 的行。 |
journalctl | journalctl 命令用于查看系统日志(systemd-journald 提供的日志),可以按时间顺序查看、筛选和分页显示系统日志。 | 示例:journalctl -u nginx.service 查看 Nginx 服务的日志。 |
dmesg | dmesg 命令用于显示系统启动时的消息缓冲区内容,可以查看系统启动过程中的各种信息和错误。 | 示例:dmesg | grep -i error 查看系统启动时的错误信息。 |
tailf | tailf 命令用于实时监视指定文件的末尾内容,类似于 tail -f 命令,但是不会显示文件名。 | 示例:tailf /var/log/syslog 实时监视系统日志文件的内容。 |
2、实时查看项目运行时打印的日志
首先要找到 homebrew 的日志目录:
cd /opt/homebrew/opt/nginx/logs
查看运行日志:
tail -f test.access.log
查看错误日志:
tail -f test.error.log