From 8eb9f3f6bbed75377b10976933841647be65ba59 Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Thu, 29 Feb 2024 09:35:47 -0500 Subject: [PATCH] fix: increase soft and hard file limits (#978) --- usr/etc/security/limits.d/30-brew-limits.conf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 usr/etc/security/limits.d/30-brew-limits.conf diff --git a/usr/etc/security/limits.d/30-brew-limits.conf b/usr/etc/security/limits.d/30-brew-limits.conf new file mode 100644 index 00000000000..6decf5d202a --- /dev/null +++ b/usr/etc/security/limits.d/30-brew-limits.conf @@ -0,0 +1,8 @@ +#This file sets the resource limits for the users logged in via PAM. +#It does not affect resource limits of the system services. +#This file overrides defaults set in /etc/security/limits.conf + +* soft nofile 4096 +* hard nofile 8192 +root soft nofile 4096 +root hard nofile 8192 \ No newline at end of file