nginx并发性能测试

1、测试环境

内网测试,ab, centos 6, 20核  40线程,nginx 

nginx 40个worker process

ab安装

yum install httpd-tools

nginx主要配置


worker_processes auto;


pid        /run/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
    {
        use epoll;
        worker_connections 51200;
        multi_accept on;
    }

2、测试结果

nginx并发性能测试_第1张图片

网卡监控

nginx并发性能测试_第2张图片

结论

QPS:9千多,没有上万,有点遗憾。可能是内网带宽达到了极限。

你可能感兴趣的:(测试和自动化,nginx测试,性能测试)