博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx离线安装模块,安装gcc
阅读量:6769 次
发布时间:2019-06-26

本文共 1338 字,大约阅读时间需要 4 分钟。

hot3.png

环境:linux,离线

首先准备nginx安装包,如nginx-1.12.2.tar.gz

即将安装的模块,如本文中的http_auth_request_module,用于在nginx接收请求时,先访问我们的鉴权服务,若返回200则表明有权继续访问,否则nginx将返回401

 

顺序执行:

tar -zvxf nginx-1.12.2.tar.gzcd nginx-1.12.2./configure --with-http_auth_request_modulemake install

第三步若提示"./configure: error: C compiler cc is not found",则需要安装gcc

离线安装gcc

查看linux版本,如centos7,则到镜像地址:

下载下列rpm:

170329091590381.jpg

rpm -Uvh *.rpm --nodeps --force

gcc -v 查看版本

 

继续第三步,若报错:

./configure: error: the HTTP rewrite module requires the PCRE library.

则还需安装pcre,安装方式同上

2185869aa4314c5c256e5f903a5963e69c8.jpg

再次第三步,安装成功:

Configuration summary

  + using system PCRE library
  + OpenSSL library is not used
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"

  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"

转载于:https://my.oschina.net/woooooody/blog/3046105

你可能感兴趣的文章
用java的io流,将一个文本框的内容反转
查看>>
【shell】sed指定追加模式空间的次数
查看>>
ABAP JSON转换
查看>>
12.1动态内存与智能指针
查看>>
python和C语言混编的几种方式
查看>>
opencv 模块
查看>>
第三周作业
查看>>
Codeforces 791A Bear and Big Brother(暴力枚举,模拟)
查看>>
开源模式
查看>>
P2708 硬币翻转(简单模拟)
查看>>
Linux内核调试方法的总结(转载)
查看>>
BZOJ4818 序列计数
查看>>
几种TCP连接终止
查看>>
模拟post提交,保持session不变
查看>>
Django中的Form表单
查看>>
VB中不用adodc控件,如何与datagrid控件绑定?
查看>>
Android沉浸式(侵入式)标题栏(状态栏)Status(二)
查看>>
Mac 下 Chrome 快捷键大全
查看>>
navigationController 的返回按钮自定义
查看>>
JS运动从入门到精髓!哈哈
查看>>