CentOS7 安装Nginx
Posted 皮卡丘的猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 安装Nginx相关的知识,希望对你有一定的参考价值。
引言:大家好,我是热爱coding,崇尚开源,乐于分享的【皮卡丘的猫】
Step1:去官网http://nginx.org/下载对应的nginx包,推荐使用稳定版本,我本次安装的是nginx-1.16.1.tar.gz 版本
Step2:上传nginx
Step3:安装相关依赖
yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
注意:编译之前,先创建nginx临时目录,如果不创建,在启动nginx的过程中会报错
mkdir /var/temp/nginx -p
Step4:进入nginx目录,执行以下命令进行配置
./configure \\
--prefix=/usr/local/nginx \\
--pid-path=/var/run/nginx/nginx.pid \\
--lock-path=/var/lock/nginx.lock \\
--error-log-path=/var/log/nginx/error.log \\
--http-log-path=/var/log/nginx/access.log \\
--with-http_gzip_static_module \\
--http-client-body-temp-path=/var/temp/nginx/client \\
--http-proxy-temp-path=/var/temp/nginx/proxy \\
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \\
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \\
--http-scgi-temp-path=/var/temp/nginx/scgi \\
--with-http_ssl_module
Step5:编译,安装
make
make install
至此,Nginx 安装成功,安装目录在/usr/local/nginx目录下
cd /usr/local/nginx/sbin
./nginx #启动
./nginx -s stop #启停
./nginx -s quit #启停
./nginx -s reload # 重新加载
./nginx -t #检查配置文件是否编写错误
Step6:在浏览器地址栏输入:http://xxx:80 是否显示nginx主页
注意事项:
1.如果在云服务器安装,需要开启默认的nginx端口:80
2.如果在虚拟机安装,需要关闭防火墙
3.本地win或mac需要关闭防火墙
以上是关于CentOS7 安装Nginx的主要内容,如果未能解决你的问题,请参考以下文章