diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-05-19 15:55:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-05-20 18:13:59 +0200 |
commit | 0e0d424c0f5e1b8cff32ed51033ee6e2f70a5676 (patch) | |
tree | 3047bb0eb15206ee9d8dc1dcc0b05dc0ab9cadfe /sysctl.d/50-pid-max.conf | |
parent | json: fix minor memory leak on error path (diff) | |
download | systemd-0e0d424c0f5e1b8cff32ed51033ee6e2f70a5676.tar.xz systemd-0e0d424c0f5e1b8cff32ed51033ee6e2f70a5676.zip |
sysctl: bump pid range only on 64-bit systems
Closes #12604.
Diffstat (limited to 'sysctl.d/50-pid-max.conf')
-rw-r--r-- | sysctl.d/50-pid-max.conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysctl.d/50-pid-max.conf b/sysctl.d/50-pid-max.conf new file mode 100644 index 0000000000..1eff2d7ece --- /dev/null +++ b/sysctl.d/50-pid-max.conf @@ -0,0 +1,16 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See sysctl.d(5) and core(5) for documentation. + +# To override settings in this file, create a local file in /etc +# (e.g. /etc/sysctl.d/90-override.conf), and put any assignments +# there. + +# Bump the numeric PID range to its maximum of 2^22 (from the in-kernel default +# of 2^16), to make PID collisions less likely. +kernel.pid_max = 4194304 |