From 5ff9cdb8ddf134485e8d56e5fc8babf663ef5e8e Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sat, 25 Dec 2021 11:04:14 +0700 Subject: [PATCH] fix: fix cannot view logs on dev VM Failed to create fsnotify watcher: too many open files https://www.suse.com/support/kb/doc/?id=000020048 --- metal/Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metal/Vagrantfile b/metal/Vagrantfile index 4e8fa5a8..a318e2bb 100644 --- a/metal/Vagrantfile +++ b/metal/Vagrantfile @@ -30,5 +30,7 @@ Vagrant.configure("2") do |config| setenforce Permissive dnf install -y iscsi-initiator-utils systemctl enable --now iscsid + sysctl fs.inotify.max_user_instances=8192 + sysctl -p SHELL end