• Rocky(centos)安装nginx并设置开机自启


    一、安装nginx

    1、安装依赖

    yum install -y gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel

    2、去官网下载最新的稳定版nginx

    nginx: downloadicon-default.png?t=N7T8http://nginx.org/en/download.html

    3、将下载后的nginx上传至/usr/local下

    或者执行

    1. #2023-10-8更新
    2. cd /usr/local
    3. wget http://nginx.org/download/nginx-1.24.0.tar.gz

    然后解压命令解压当当前路径

    tar -xzvf nginx-1.24.0.tar.gz

    4、安装nginx

    切换到解压的路径

    cd /usr/local/nginx-1.24.0

    配置并制定安装路径  /usr/local/nginx 下(此步骤不会生成路径,安装后才会生成路径和文件)

    ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module

    执行安装,可能新系统提示没有make命令,输入y 继续安装执行即可;

    make install

    编译后入下图,可执行命令查看nginx的文件目录

    whereis nginx

     切换路径并删除解压包

    1. cd ..
    2. rm -rf /usr/local/nginx-1.24.0

     5、新建自启动脚本并上传

    1)新建  nginx.service  文件

    文件内容如下

    1. [Unit]
    2. Description=nginx-The High-performance HTTP Server
    3. After=network.target
    4. [Service]
    5. Type=forking
    6. PIDFile=/usr/local/nginx/logs/nginx.pid
    7. ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
    8. ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
    9. ExecReload=/usr/local/nginx/sbin/nginx -s reload
    10. ExecStop=/usr/local/nginx/sbin/nginx -s stop
    11. PrivateTmp=true
    12. [Install]
    13. WantedBy=multi-user.target

    2)将文件上传至   /etc/systemd/system 下

    3)新建nginx运行的用户组和用户:运行下列命令

    1. groupadd -f www
    2. useradd -g www www

    6、重载服务脚本,并加入自启动

    1. #重新载入服务列表
    2. systemctl daemon-reload
    3. #启动nginx
    4. systemctl start nginx.service
    5. #将nginx加入自启动脚本
    6. systemctl enable nginx.service
    7. #查看nginx状态
    8. systemctl status nginx.service

     可能用到命令

    1. #重启nginx
    2. systemctl restart nginx.service
    3. #查看nginx状态
    4. systemctl status nginx.service

    7、测试自启动效果

    1)运行 reboot 命令 重启并连接机器

    重启后执行查看80端口占用

    netstat -tlunp |grep 80

    2)放开80端口

    1. firewall-cmd --zone=public --add-port=80/tcp --permanent
    2. firewall-cmd --reload

     3)直接浏览器访问测试



    二、配置nginx 

    1)生产中无http配置 default.cnf(添加 请求超时、head头和文件大小):

    1. server {
    2. listen 80; # 本服务监听的端口号
    3. server_name localhost; # 主机名称
    4. client_max_body_size 600m;
    5. client_body_buffer_size 128k;
    6. proxy_connect_timeout 600;
    7. proxy_read_timeout 600;
    8. proxy_send_timeout 600;
    9. proxy_buffer_size 64k;
    10. proxy_buffers 4 32k;
    11. proxy_busy_buffers_size 64k;
    12. proxy_temp_file_write_size 64k;
    13. location / {
    14. # root 规定了通过监听的端口号访问的文件目录
    15. root /usr/share/nginx/html/grain/dist;
    16. # 配置资源重新跳转,防止刷新后页面丢失
    17. try_files $uri $uri/ /index.html;
    18. # index 规定了该目录下指定哪个文件
    19. index index.html index.htm;
    20. }
    21. # 配置后端接口的跨域代理
    22. # 对于路径为 "prod-api 的接口,帮助他跳转到指定的地址
    23. location /prod-api/ {
    24. proxy_set_header Host $http_host;
    25. proxy_set_header X-Real-IP $remote_addr;
    26. proxy_set_header REMOTE-HOST $remote_addr;
    27. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    28. # 本机上运行的后端接口
    29. proxy_pass http://jar-grain-9000:9000/;
    30. }
    31. location /status{
    32. stub_status on;
    33. }
    34. }

    2) 下面是一个比较全的配置

    1. # 以下是全局段配置
    2. #user administrator administrators; #配置用户或者组,默认为nobody nobody。
    3. #worker_processes 2; #设置进程数,默认为1
    4. #pid /nginx/pid/nginx.pid; #指定nginx进程运行文件存放地址
    5. error_log log/error.log debug; #制定日志路径,级别:debug|info|notice|warn|error|crit|alert|emerg
    6. # events段配置信息
    7. events {
    8. accept_mutex on; #设置网路连接序列化,防止惊群现象发生,默认为on
    9. multi_accept on; #设置一个进程是否同时接受多个网络连接,默认为off
    10. #use epoll; #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
    11. worker_connections 1024; #最大连接数,默认为512
    12. }
    13. # http、配置请求信息
    14. http {
    15. include mime.types; #文件扩展名与文件类型映射表
    16. default_type application/octet-stream; #默认文件类型,默认为text/plain
    17. #access_log off; #取消服务日志
    18. log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; #自定义格式
    19. access_log log/access.log myFormat; #combined为日志格式的默认值
    20. sendfile on; #允许sendfile方式传输文件,默认为off,可以在http块,server块,location块。
    21. sendfile_max_chunk 100k; #每个进程每次调用传输数量不能大于设定的值,默认为0,即不设上限。
    22. keepalive_timeout 65; #连接超时时间,默认为75s,可以在http,server,location块。
    23. upstream mysvr {
    24. server 127.0.0.1:7878;
    25. server 192.168.10.121:3333 backup; #热备
    26. }
    27. error_page 404 https://www.baidu.com; #错误页
    28. # 第一个Server区块开始,表示一个独立的虚拟主机站点
    29. server {
    30. keepalive_requests 120; #单连接请求上限次数。
    31. listen 4545; #监听端口
    32. server_name 127.0.0.1; #监听地址
    33. location ~*^.+$ { #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。
    34. #root path; #根目录
    35. #index vv.txt; #设置默认页
    36. proxy_pass http://mysvr; #请求转向mysvr 定义的服务器列表
    37. deny 127.0.0.1; #拒绝的ip
    38. allow 172.18.5.54; #允许的ip
    39. }
    40. }
    41. }

  • 相关阅读:
    使用Hbuilder+Xcode打包iOS app前期准备
    第 1 章 概述 习题
    前端性能优化方法与实战05 指标采集:白屏、卡顿、网络环境指标采集方法
    Goland2023版新UI的debug模式调试框按钮功能说明
    戏说数据仓库,商业智能BI中数据仓库的本质是什么?
    Java 线程创建与常用方法
    K8s的集群调度
    3D医学影像PACS系统源代码
    Linux——gdb|准备工作查看代码|r命令|断点相关命令|逐语句|逐过程|调用堆栈|冯诺依曼结构
    nginx 部署前端资源的最佳方案
  • 原文地址:https://blog.csdn.net/qq_26408545/article/details/133685624