From d428624ac20e61f6805ad2dfd05a6f3ca3983df6 Mon Sep 17 00:00:00 2001 From: Denise Unterwurzacher Date: Wed, 17 Jun 2020 12:10:22 -0500 Subject: [PATCH] ITOPSENG-703 Added open file descriptors to the systemd config to allow for the applications to open more files. This avoids the 'too many open files' problem that can cause outages. --- roles/product_startup/templates/product.service.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/product_startup/templates/product.service.j2 b/roles/product_startup/templates/product.service.j2 index 8310e88..a99636a 100644 --- a/roles/product_startup/templates/product.service.j2 +++ b/roles/product_startup/templates/product.service.j2 @@ -14,5 +14,7 @@ ExecStart={{ atl_startup_exec_path }}{% for c in atl_startup_exec_options %} {{ Restart=on-failure +LimitNOFILE=65536 + [Install] WantedBy={{ atl_systemd_service_target }}