From d35eff8b1a4a6f5ac930e769f5e4249953d6760b Mon Sep 17 00:00:00 2001 From: JOduMonT Date: Sun, 20 Aug 2017 16:30:39 +0700 Subject: [PATCH] vm.overcommit_memory & transparent_hugepage as recommanded by REDIS \#WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. \# WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. --- INSTALL_LINUX.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/INSTALL_LINUX.md b/INSTALL_LINUX.md index d42bfaa..90f1016 100644 --- a/INSTALL_LINUX.md +++ b/INSTALL_LINUX.md @@ -31,9 +31,12 @@ systemctl restart sshd cat > /etc/sysctl.d/libresh.conf < /sys/kernel/mm/transparent_hugepage/enabled ``` # define Localhost -- GitLab