码迷,mamicode.com
首页 > 其他好文 > 详细

centos7 安装 nginx

时间:2020-02-25 19:48:00      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:插件   工作   nginx安装   装包   pcre   查看   编译安装   重启   解压   

一、准备工作

  • 安装必要的插件

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

二、nginx 源码安装

  • 下载nginx安装包

    wget https://nginx.org/download/nginx-1.14.0.tar.gz`
  • 解压安装包

    tar zxvf nginx-1.14.0.tar.gz`
  • confiure

    ./configure
  • 编译和编译安装

    make && make install
  • 启动,重载与关闭

    • 启动 ./sbin/nginx
    • 重载 ./sbin/nginx -s reload
    • 关闭 pkill -9 nginx

三、yum源 安装

  • yum源安装nginx

    yum install -y nginx
  • 查看 nginx 状态

    systemctl status nginx
  • 启动 nginx 服务

    systemctl start nginx
  • 重启 nginx 服务

    systemctl restart nginx
  • 关闭 nginx 服务

    systemctl stop nginx
  • 设置开机启动

    systemctl start nginx
    systemctl enable nginx
  • 至此 yum源安装 nginx 完毕

centos7 安装 nginx

标签:插件   工作   nginx安装   装包   pcre   查看   编译安装   重启   解压   

原文地址:https://www.cnblogs.com/wuxiaoshi/p/12362723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!