标签:操作系统 解决 har roc code soft error 创建 java
环境:linux
错误:java.lang.OutOfMemoryError: unable to create new native thread
原因:OS对线程是有限制
解决办法:
在Linux操作系统设定nofile和nproc,具体编辑/etc/security/limits.conf添加如下:
* soft nofile 10240
* hard nofile 10240
* soft nproc 10240
* hard nproc 10240
/etc/security/limits.d/90-nproc.conf添加如下:
* soft nofile 10240
* hard nofile 10240
* soft nproc 10240
* hard nproc 10240
重新登录,通过
标签:操作系统 解决 har roc code soft error 创建 java
原文地址:http://www.cnblogs.com/wujf/p/6094525.html