linux报错:-bash: fork: retry: No child processes

上一篇 / 下一篇  2019-07-09 17:29:19 / 个人分类:Linux

linux报错:

-bash: fork: retry: No child processes


上面这段错误提示的本质是Linux操作系统无法创建更多进程,导致出错。
因此要解决这个问题需要修改Linux允许创建更多的进程。

解决办法:
#并发连接数
echo "root soft nofile 65535"  >> /etc/security/limits.conf
echo "root hard nofile 65535"  >> /etc/security/limits.conf
echo "* soft nofile 65535"     >>  /etc/security/limits.conf
echo "* hard nofile 65535"     >> /etc/security/limits.conf
echo -e  "root soft nofile 65535\nroot hard nofile 65535\n* soft nofile 65535\n* hard nofile 65535\n"     >> /etc/security/limits.conf
sed -i 's#4096#65535#g' /etc/security/limits.d/20-nproc.conf 

TAG:

 

评分:0

我来说两句

Open Toolbar