public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] dnsdist: Increase number of open files to 64k
@ 2019-08-22 21:09 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2019-08-22 21:09 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1109 bytes --]

dnsdist might need to open large number of connections
and therefore the default limit of 1024 needs to be
raised.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 lfs/dnsdist                      | 2 +-
 src/initscripts/packages/dnsdist | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/lfs/dnsdist b/lfs/dnsdist
index 5963c5acd..6a52f0f47 100644
--- a/lfs/dnsdist
+++ b/lfs/dnsdist
@@ -33,7 +33,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 SUP_ARCH   = x86_64 i586
 PROG       = dnsdist
-PAK_VER    = 2
+PAK_VER    = 3
 
 DEPS       = ""
 
diff --git a/src/initscripts/packages/dnsdist b/src/initscripts/packages/dnsdist
index a70bd3806..c94f429ab 100644
--- a/src/initscripts/packages/dnsdist
+++ b/src/initscripts/packages/dnsdist
@@ -14,6 +14,11 @@
 case "${1}" in
 	start)
 		boot_mesg "Starting dnsdist..."
+
+		# Increasing maximum number of open files
+		ulimit -n 65536
+
+		# Starting daemon
 		/usr/bin/dnsdist --supervised ${ARGS} >/dev/null &
 		evaluate_retval
 		;;
-- 
2.20.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-08-22 21:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-22 21:09 [PATCH] dnsdist: Increase number of open files to 64k Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox