1、查看打开文件数量限制
ulimit -a ulimit -n
2、临时修改
ulimit -n 2048
3、永久修改
vi /etc/security/limits.conf 追加 * soft nofile 65535 * hard nofile 65535 注意前面的星号(*)要保留