Nginx Nginx安装
Posted Sonder.J
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx Nginx安装相关的知识,希望对你有一定的参考价值。
Nginx安装
一 环境
虚拟机:VirtualBox
操作系统:CentOS7
Nginx版本:nginx-1.6.3
二 下载地址
http://nginx.org/en/download.html
三 安装依赖软件
yum -y install gcc gcc-c++ autoconf automake make
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
四 安装软件
1 创建目录并上传文件
1 cd /usr/local/ 2 mkdir software
将nginx-1.6.3.tar.gz上传到/usr/local/software/目录下
2 解压
1 tar zxvf nginx-1.6.3.tar.gz
3 创建安装目录
1 mkdir -p /usr/local/nginx
4 修改配置
1 cd nginx-1.6.3/ 2 ./configure --prefix=/usr/local/nginx
5 安装
1 make && make install
五 启动
1 进入安装目录
1 cd /usr/local/nginx/sbin
2 启动
1 ./nginx
3 验证是否启动成功
六 关闭
1 ./nginx -s stop
七 重启
1 ./nginx -s reload
以上是关于Nginx Nginx安装的主要内容,如果未能解决你的问题,请参考以下文章