我正在尝试使用带有以下命令的siege在我自己的服务器中进行压力测试:
$siege -c 500 myweb.com/somefile.PHP
但我得到这个错误:
[error] descriptor table full sock.c:119: Too many open files
我也得到了这个警告:
libgcc_s.so.1 must be installed for pthread_cancel to work
但我正在使用Ubuntu 15.04(开发分支),我已经安装了libgcc1包,所以我不知道为什么它会抱怨.so共享库.
为了解决这个问题,我不得不调整操作系统“ulimit”设置:
ulimit -a – 检查当前设置
ulimit -n 10000 – 编辑设定值
资料来源:https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595527