Linux中的最大进程数

Linux中的最大进程数

问题描述:

在linux系统中,最大可能的进程数限制是多少?我们如何找到它?

What is the maximum limit to the number of processes possible in a linux system? How can we find it ?

您的内核应将此信息导出到procfs:

Your kernel should export this information in procfs:

cat /proc/sys/kernel/pid_max

这是系统可以支持的唯一进程标识符的最大数量.

This is the maximum number of unique process identifiers your system can support.

由于它是文件,因此可以从任何功能强大的编程语言中检查/proc/sys/kernel/pid_max.

Since it is a file, /proc/sys/kernel/pid_max can be inspected from any capable programming language.