博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx 安装
阅读量:6448 次
发布时间:2019-06-23

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

Nginx 安装

快速安装

Ngnix官网地址:

使用OpenResty对Nginx实现扩展。

安装步骤

  1. 下载源码包,并解压。详细命令如下:

    • wget http://nginx.org/download/nginx-1.15.3.tar.gz
    • tar zxvf nginx-1.15.3.tar.gz
  2. 安装依赖:pcre、openssl、lua和编译工具:gcc。详细命令如下:

    • yum install -y pcre pcre-devel
    • yum install -y openssl openssl-devel
    • yum install -y lua lua-devel
    • yum install -y gcc
    • 注:LuaJIT与Lua均可以(配置依赖分别为--with-luajit… 和--with-lua…,模块使用一致),但LuaJIT效率比Lua高。LuaJIT安装见官网:
  3. 进源码目录cd nginx-1.15.3,配置nignx。

    • 文档地址:。使用` ./configure --help

`查看参数说明,翻译见:

* 命令示例```sh./configure  \--with-http_lua_module \--with-lua-lib=/usr/lib64 \--with-lua-inc=/usr/include \--with-stream \--with-stream_ssl_module```* 注:yum 安装默认在/usr/lib64 和/usr/include,可以使用 `rpm -ql pcre-devel`,`rpm -ql lua-devel` 查看相关文件。* 运行结果示例:
Configuration summary        + using system PCRE library        + using system OpenSSL library        + 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"
  1. 编译并安装。

    • make
    • make install

转载地址:http://lhlwo.baihongyu.com/

你可能感兴趣的文章
整理Java基础知识--选择与判断
查看>>
Linux查看程序端口占用情况
查看>>
jar包冲突案例分析.md
查看>>
控制圈复杂度的9种重构技术总结
查看>>
当软件项目全部能靠自己搞定了,也能接几万元的软件项目时,未必适合创业...
查看>>
数据分析--数字找朋友
查看>>
推荐好用的开源库或软件
查看>>
18年selenium3+python3+unittest自动化测试教程(下)
查看>>
Redis集群中删除/修改节点(master、slave)(实验)
查看>>
memcache数据库和redis数据库的区别(理论)
查看>>
我的友情链接
查看>>
MyBatis+Spring结合
查看>>
shell实例-判断apache是否正常启动
查看>>
SharedPreferences存储复杂对象解决方案
查看>>
Office 365之SkyDrive Pro
查看>>
脑残式网络编程入门(二):我们在读写Socket时,究竟在读写什么?
查看>>
无缝滚动实现原理分析【公告栏】
查看>>
Java Web 高性能开发
查看>>
redis-cli 命令总结
查看>>
CentOS 4.4双网卡绑定,实现负载均衡
查看>>