Limit process per jail

You should look at RCTL, which appeared in FreeBSD 9.0. Specifically, you can set maxproc on a per jail basis, along with other constraints. Remember to adjust the relevant MIBs:
Code:
$ sysctl -a | grep maxproc
kern.maxproc: 6164
kern.maxprocperuid: 5547
 
Back
Top