1、使用ulimit -a可以查看,其中的open files后面的数就是最大文件句柄数2、临时方法:使用ulimit -n size修改最大文件句柄数(这种方法只针对当前进程有效)3、永久方法:修改linux系统参数。vi /etc/security/limits.conf* soft nofile 65536* hard nofile 65536