CentOS 7 安装 nginx1.15

Posted BrokenColor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 安装 nginx1.15相关的知识,希望对你有一定的参考价值。

1,安装依赖

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

 SSL功能需要openssl库

  gzip模块需要zlib库

  rewrite模块需要pcre库

2,下载nginx的tar包

  cd /soft
 
  mkdir nginx
 
  cd nginx
 
  //下载tar包
 
  wget http://nginx.org/download/nginx-1.15.7.tar.gz

3,安装nginx

tar -zxvf nginx-1.15.7.tar.gz
 
cd nginx-1.15.7/
 
./configure --prefix=/soft/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
 #编译安装
make install

4,Nginx启动

//进入nginx安装目录
cd sbin
sudo ./nginx

5,验证

 ps;

常用命令

#启动
./nginx 
#停止
./nginx -s stop
#重新加载
./nginx -s reload

 

以上是关于CentOS 7 安装 nginx1.15的主要内容,如果未能解决你的问题,请参考以下文章

nginx1.15安装

centos 7安装gitlab及使用

版本管理 GitLab 的安装及管理 (CentOS 7)

部署基于python的web发布环境(第一篇)1:安装nginx2:安装mysql5.7

redmine3.3.1安装与常用插件安装

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段