NaveenV
NaveenV

Reputation: 31

Process ID exhaustion in Linux

What happens if Linux Operating System runs out of process ID ? Will older processes be deleted to free up space to accommodate future requests ?

Upvotes: 2

Views: 1256

Answers (1)

tdk2fe
tdk2fe

Reputation: 412

I am assuming you are asking what happens when the process limit has been reached. In that case, the system doesn't allow new processes to be created until existing ones exit and get cleaned up. This means nobody can log in, and the system is essentially unusable.

Upvotes: 2

Related Questions