简介:OpenResty® 是由“章亦春”基于 Nginx 与 Lua 开源的高性能 Web 平台,其内部集成了大量精良的 Lua 库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态 Web 应用、Web 服务和动态网关。OpenResty® 通过汇聚各种设计精良的 Nginx 模块(主要由 OpenResty 团队自主开发),从而将 Nginx 有效地变成一个强大的通用 Web 应用平台。这样,Web 开发人员和系统工程师可以使用 Lua 脚本语言调动 Nginx 支持的各种 C 以及 Lua 模块,快速构造出足以胜任 10K 乃至 1000K 以上单机并发连接的高性能 Web 应用系统。
OpenResty® 的目标是让你的Web服务直接跑在 Nginx 服务内部,充分利用 Nginx 的非阻塞 I/O 模型,不仅仅对 HTTP 客户端请求,甚至于对远程后端诸如 MySQL、PostgreSQL、Memcached 以及 Redis 等都进行一致的高性能响应。
1、基于centos7安装步骤如下:
相关依赖
[root@master wls]# yum -y install pcre-devel openssl-devel gcc curl perl wget
2、下载openresty
[root@master wls]# wget https://openresty.org/download/openresty-1.15.8.1.tar.gz
[root@master wls]# tar -xf openresty-1.15.8.1.tar.gz
3、编译openresty
[root@master wls]# cd openresty-1.15.8.1/
[root@master wls]# ./configure --prefix=/wls/openresty \
--with-luajit \
--without-http_redis2_module \
--with-http_iconv_module \
--with-http_postgres_module
[root@master wls]# make && make install
4、启动服务
[root@master wls]# cd /wls/openresty/bin
[root@master wls]# ./openresty
查看服务是否启动成功
[root@master bin]# ss -tnlp|grep 80
LISTEN 0 128 *:80 *:* users:(("openresty",pid=38259,fd=6),("openresty",pid=38258,fd=6))
5、开放防火墙
[root@master wls]# firewall-cmd --zone=public --add-port=80/tcp --permanent
[root@master wls]# firewall-cmd --reload
6、浏览器验证
在浏览器地址栏输入:服务器地址+端口
7、压力测试
[root@master openresty]# yum -y install httpd-tools
[root@master openresty]# ab -c1000 -n50000 http://192.168.31.100:80/
-c:每次并发数为1000个
-n:共发送50000个请求
详细请求过程
This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Server Software: openresty/1.15.8.1 #服务器软件
Server Hostname: 192.168.31.100 #主机名
Server Port: 80 #请求端口
Document Path: / #文件路径
Document Length: 649 bytes #页面字节数
Concurrency Level: 1000 #请求的并发数
Time taken for tests: 8.090 seconds #总访问时间
Complete requests: 50000 #请求完成数量
Failed requests: 0 #请求失败数量
Write errors: 0
Total transferred: 44400000 bytes #请求总数据大小
HTML transferred: 32450000 bytes #html页面实例总字节数
Requests per second: 6180.73 [#/sec] (mean) #每秒多少请求,服务器的吞吐量
Time per request: 161.793 [ms] (mean) #用户平均请求等待时间
Time per request: 0.162 [ms] (mean, across all concurrent requests) #服务器处理时间
Transfer rate: 5359.85 [Kbytes/sec] received #每秒获取的数据长度
Percentage of the requests served within a certain time (ms)
50% 23 #50%用户请求在23ms内返回
66% 30 #66%用户请求在30ms内返回
75% 33 #75%用户请求在33ms内返回
80% 40 #80%用户请求在40ms内返回
90% 172 #90%用户请求在172ms内返回
95% 1031 #95%用户请求在1031ms内返回
98% 1071 #1071%用户请求在1071ms内返回
99% 1451 #99%用户请求在1451ms内返回
100% 7071 (longest request) #100%用户请求在7071ms内返回