From 1a82027c68ac98ca66142aa38ab895d0119f24a7 Mon Sep 17 00:00:00 2001 From: Carter McKinnon Date: Wed, 20 Sep 2023 17:19:51 -0700 Subject: [PATCH] Set pid_max to 4194304 --- scripts/install-worker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install-worker.sh b/scripts/install-worker.sh index ab209d37d..5ee1fae5f 100644 --- a/scripts/install-worker.sh +++ b/scripts/install-worker.sh @@ -519,6 +519,7 @@ EOF echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf echo fs.inotify.max_user_instances=8192 | sudo tee -a /etc/sysctl.conf echo vm.max_map_count=524288 | sudo tee -a /etc/sysctl.conf +echo 'kernel.pid_max=4194304' | sudo tee -a /etc/sysctl.conf ################################################################################ ### adding log-collector-script ################################################