CentOS 7 上使用 wget 安装 Nginx 并设置开机自启

在 CentOS 7 上使用 wget 安装 Nginx 并设置开机自启,你可以按照以下步骤进行操作:

  1. 首先,确保你已经以 root 用户或者具有 sudo 权限的用户身份登录到 CentOS 7。

  2. 安装 Nginx 所需的依赖包。在终端中运行以下命令:

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

  3. 使用 wget 下载 Nginx 的源代码包。在终端中运行以下命令(请检查是否有更新的版本):

    |---|------------------------------------------------------|
    | | wget http://nginx.org/download/nginx-1.22.1.tar.gz |

    注意:版本号可能随时间变化,请根据实际情况选择合适的版本。

  4. 解压下载的 Nginx 源代码包:

    |---|---------------------------------|
    | | tar -zxvf nginx-1.22.1.tar.gz |

  5. 进入解压后的目录:

    |---|--------------------|
    | | cd nginx-1.22.1/ |

  6. 编译和安装 Nginx:

    |---|------------------------------------------|
    | | ./configure --prefix=/usr/local/nginx |
    | | make |
    | | make install |

  7. 安装完成后,配置 Nginx 为系统服务以便开机自启。创建一个 systemd 服务文件,例如 /usr/lib/systemd/system/nginx.service,内容如下:

    |---|--------------------------------------------------------------------------|
    | | [Unit] |
    | | Description=The NGINX HTTP and reverse proxy server |
    | | After=syslog.target network.target remote-fs.target nss-lookup.target |
    | | |
    | | [Service] |
    | | Type=forking |
    | | PIDFile=/usr/local/nginx/logs/nginx.pid |
    | | ExecStartPre=/usr/local/nginx/sbin/nginx -t |
    | | ExecStart=/usr/local/nginx/sbin/nginx |
    | | ExecReload=/bin/kill -s HUP $MAINPID |
    | | ExecStop=/bin/kill -s QUIT $MAINPID |
    | | PrivateTmp=true |
    | | |
    | | [Install] |
    | | WantedBy=multi-user.target |

    请确保 PIDFileExecStart 中的路径与你的 Nginx 安装路径一致。

  8. 重新加载 systemd 配置文件:

    |---|--------------------------------|
    | | sudo systemctl daemon-reload |

  9. 启动 Nginx 服务并设置为开机自启:

    |---|-------------------------------|
    | | sudo systemctl start nginx |
    | | sudo systemctl enable nginx |

  10. 检查 Nginx 服务状态:

    |---|-------------------------------|
    | | sudo systemctl status nginx |

相关推荐
苹果醋310 小时前
Golang的文件加密工具
运维·vue.js·spring boot·nginx·课程设计
苹果醋320 小时前
2020重新出发,MySql基础,MySql表数据操作
java·运维·spring boot·mysql·nginx
苹果醋31 天前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
阿松哥哥20182 天前
linux环境使用源码方式安装nginx(centos)
linux·nginx·centos
与君共勉121382 天前
Nginx 负载均衡的实现
运维·服务器·nginx·负载均衡
okok__TXF2 天前
Nginx + Lua脚本打配合
nginx·lua
青灯文案12 天前
前端 HTTP 请求由 Nginx 反向代理和 API 网关到后端服务的流程
前端·nginx·http
小屁不止是运维2 天前
麒麟操作系统服务架构保姆级教程(五)NGINX中间件详解
linux·运维·服务器·nginx·中间件·架构
恩爸编程2 天前
探索 Nginx:Web 世界的幕后英雄
运维·nginx·nginx反向代理·nginx是什么·nginx静态资源服务器·nginx服务器·nginx解决哪些问题
努力--坚持2 天前
电商项目-网站首页高可用(一)
nginx·lua·openresty