Linux Nginx安装

1.下载Nginx
#下载 Stable version 
https://nginx.org/en/download.html  
2.安装依赖环境
 1. 安装gcc环境
 yum install gcc-c++
 2. 安装pcre库,用于解析正则表达式
 yum install -y pcre pcre-devel
 3. zlib压缩和解压缩
 yum install -y zlib zlib-devel
 4. SSL安全的加密的套接字协议层,用于HTTP安全传输,也就是HTTPS
 yum install -y openssl openssl-devel
3.解压Nginx
tar -zxvf nginx-1.18.0.tar.gz
4.编译之前,创建Nginx临时目录
mkdir /var/temp/nginx -p
5.在Nginx目录,输入如下命令进行配置,目的是为了创建makefile文件
 ./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
6.编译
make
7.安装
make install
8.查找Nginx安装目录
whereis nginx
9.进去Nginx的sbin目录启动
/usr/local/nginx/sbin/nginx
# 停止: ./nginx -s stop
#重新加载: ./nginx -s reload 
10.通过浏览器输入服务器IP 出现下面html
                                                    Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

                       For online documentation and support please refer to nginx.org.
                                   Commercial support is available at nginx.com.

                                                Thank you for using nginx.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值