Add limits files for services

This commit is contained in:
Haïkel Guémar 2015-02-27 19:19:44 +01:00
parent ba72a531e2
commit 309201a777
2 changed files with 13 additions and 0 deletions

6
redis-limit-init Normal file
View File

@ -0,0 +1,6 @@
# If you need to change max open file limit
# for example, when you change maxclient in configuration
# you can change the value below
# see "man limits.conf" for information
redis soft nofile 10240
redis hard nofile 10240

7
redis-limit-systemd Normal file
View File

@ -0,0 +1,7 @@
# If you need to change max open file limit
# for example, when you change maxclient in configuration
# you can change the LimitNOFILE value below
# see "man systemd.exec" for information
[Service]
LimitNOFILE=10240