1、nginx下载:http://nginx.org/en/download.html
2、解压文件,使用命令 tar -zxvf fileName.tar.gz
3、安装 gcc ,使用命令:yum -y install gcc-c
4、执行命令
配置configure --prefix 代表安装的路径,--with-http_ssl_module 安装ssl,--with-http_stub_status_module查看nginx的客户端状态
./configure --prefix=/usr/local/nginx/nginx-1.23.1 --with-http_mp4_module --with-http_flv_module --with-http_realip_module --with-http_ssl_module
如果出现下述问题
执行如下命令
yum -y install pcre-devel
完成后重新执行第四条
5、编译安装nginx make & make install
如果出现下述问题
执行下述命令
yum install pcre-devel zlib zlib-devel openssl openssl-devel
执行成功后继续执行第五条
6、进入sbin目录
cd sbin
7、启动nginx
./nginx
如果报错如下
在指定路径下创建一个logs文件夹再重新执行第七条即可
8、关闭防火墙
systemctl stop firewalld.service
9、访问nginx所在服务器IP
看到如下界面即启动成功