apache ab 測试 apr_socket_connect(): 因为目标机器积极拒绝 无法连接
2021-06-28 00:05
阅读:657
遇到这样的情况通常是你开的并行数量太多了。。。
比如:ab -c 1000 -n 10000 http://localhost/index.html 如此大的请求就会挂掉,只是还是有补救措施的,能够通过添加并发数上限解决问题,过程例如以下:
1、停止Apache服务;
2、找到apache/conf/httpd.conf文件,用文本编辑器打开找到这两行:# Server-pool management (MPM specific)
# Include conf/extra/httpd-mpm.conf
把第二行include........这行的凝视去掉。
3、找到apache/conf/extra/httpd-mpm.conf文件,打开。找到:
ThreadsPerChild 150
MaxRequestsPerChild 0
把上面的150调大。Windows下最大为1920.
注意:尖括号中的名字是winnt,不要看错了
4、又一次启动Apache服务.
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:apache ab 測试 apr_socket_connect(): 因为目标机器积极拒绝 无法连接
文章链接:http://soscw.com/index.php/essay/98649.html
文章标题:apache ab 測试 apr_socket_connect(): 因为目标机器积极拒绝 无法连接
文章链接:http://soscw.com/index.php/essay/98649.html
评论
亲,登录后才可以留言!