2021-08-30 普通用户 -bash: fork: retry: No child processes

今天jenkins构建报错,登录app用户报错:-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 

修改之后,项目就可以构建了!

你可能感兴趣的:(2021-08-30 普通用户 -bash: fork: retry: No child processes)