查看当前最大支持的线程数
bash
cat /proc/sys/kernel/threads-max
当前用户进程可以创建的最大线程数(包括子进程)
bash
[root@localhost tmp]# ulimit -u

得到当前实际的线程数
bash
[root@localhost tmp]# ps -eLf | wc -l

统计每个进程的总线程数前20的数据
bash
[root@localhost tmp]# ps -eLf | awk '{print $2}' | sort | uniq -c | sort -nr | head -n 20