第一步:下载文件:Nginx下载网址
第二步:上传到相关目录中,解压 tar -zxvf nginx.tar.gz (下载后修改名字是nginx.tar.gz,基本上会带有版本号)
第三步:./configure [--prefix]指定文件目录,不指定目录默认安装在系统目录下。
-
执行上面命令可能会出现的错误信息:
checking for OS
当在执行./configure [--prefix]时,会出现2,
-
编译安装nginx需要pcre包,未安装会有如下提示:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
需要安装pcre的devel包,pcre-devel。使用yum安装即可:(以下命令还带有ssl、zlib等依赖的安装)
**yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel**
第四步:make && make install
执行命令启动和停止命令进行测试
- sbin/nginx
- ./nginx -s stop