bash: fork: retry: no child process

When I started the django project on linux, I reported an error: bash: fork: retry: no child process.
Insert picture description here
Solution ulimit -u 10000
Insert picture description here

Pro test is effective

Set the maximum number of processes for each linux user. Below I set the maximum number of processes for a linux user to 10000:
ulimit -u 10000

Guess you like

Origin blog.csdn.net/qq_45531729/article/details/112303330