Linux 系统安装Nginx
1.去官网下载对应的nginx
2.上传nginx 到linux xt
3.安装依赖环境
(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
4.解压,需要注意,解压后得到的是源码,源码需要编译后才能安装
tar -zxvf nginx-1.16.1.tar.gz
5.编译之前,先创建nginx临时目录,如果不创建,在启动nginx的过程中会报错
mkdir /var/temp/nginx -p
6.在nginx目录,输入如下命令进行配置,目的是为了创建makefile文件
./configure \ --prefix=/usr/local/nginx \ --pid-path=/var/run/nginx/nginx.pid\ --Lock-path=/var/lock/nginx.lock、 --error-1og-path=/var/log/nginx/error.1og\ --http-1og-path=/var/Log/nginx/access.10g\ --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
成功的话我们可以看到一条命令 creating objs/Makefile
7.make编译 make
8.安装 make install
11 .查找 nginx 的安装路径
whereis nginx
注意事项: 1.如果在云服务器安装,需要开启默认的nginx端口:80
2.如果在虚拟机安装,需要关闭防火墙
3.本地win或mac需要关闭防火墙
在浏览器打开
linux 系统的内网ip
成功可以看到
越努力越幸运