我的本地 Ubuntu、AWS EC2 (8 Core) Ubuntu 和 Nginx (8 Worker) 在两台机器上运行
当我尝试与本地 Nginx 进行 10K 并发连接时,它可以工作
ab -c 10000 -n 10000 http://localhost/
但是当我在 EC2 上尝试使用 Nginx 时,出现以下错误
ab -c 10000 -n 10000 http://<ec2-ip-address>/
This is ApacheBench, Version 2.3 <$Revision: 1843412 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 65.0.95.45 (be patient)
apr_socket_recv: Connection refused (111)
Total of 1 requests completed
同时 curl 命令和 4K 连接与 EC2 上的 Nginx 工作正常
ab -c 4000 -n 4000 http://<ec2-ip-address>/
curl <ec2-ip-address>
如何使用 EC2 获得 10K 并发连接?