nginx可以使用各平台的默认包来安装,本文是介绍使用源码编译安装,这里安装的是nginx-1.9.0.tar.gz,包括具体的编译参数信息。
第一步
先确定你的Linux是否已经安装了gcc等,还没有的话,先用yum安装一下,编译啥的都需要靠这些
yum install gcc
第二步
其次安装nginx还需要PCRE library.,否则在安装nginx时候会提示:./configure: error: the HTTP rewrite module requires the PCRE library
同样也是在线安装,输入命令:
yum -y install pcre-devel openssl openssl-devel
第三步
这个准备工作都做好了,进入nginx解压的目录,直接安装就行了
先给权限
chmod +x nginx-1.9.0.tar.gz解压安装文件
tar -zxvf nginx-1.9.0.tar.gz
对解压后的nginx进行编译
cd nginx-1.9.0 ./configure --prefix=/app/appsoft/nginx-1.9.0 --with-http_stub_status_module --with-http_ssl_module make #编译 make install #安装
ok,一切搞定,剩下的就是nginx详细配置问题了。
如果make出现问题,可以执行如下命令
make clean ./configure --prefix=/app/appsoft/nginx-1.9.0
====================================================================
操作系统为Centos8.5安装nginx:
第一步
先确定你的Linux是否已经安装了gcc等,还没有的话,先用yum安装一下,编译啥的都需要靠这些
yum install gcc
第二步
其次安装nginx还需要PCRE library.,否则在安装nginx时候会提示:./configure: error: the HTTP rewrite module requires the PCRE library
同样也是在线安装,输入命令:
yum -y install pcre-devel openssl openssl-devel
第三步
这个准备工作都做好了,进入nginx解压的目录,直接安装就行了
先给权限
chmod +x nginx-1.19.9.tar.gz解压安装文件
tar -zxvf nginx-1.19.9.tar.gz
对解压后的nginx进行编译
cd nginx-1.19.9 ./configure --prefix=/app/appsoft/nginx --with-http_stub_status_module --with-http_ssl_module make #编译 make install #安装
ok,一切搞定,剩下的就是nginx详细配置问题了。
nginx的配置可以参考如下:
文章到这里结束了,谢谢大家感谢您的阅读,希望对您有帮助,本文版权归 #惊讶# 所有