diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-10-01 18:08:27 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-10-16 16:33:55 +0200 |
commit | c35ee02c61d17b0656e16b0b2fa0449bda9df507 (patch) | |
tree | 859db77c0f36b0207d65e32ac5358f7fb6562d9c /units/systemd-journal-remote.service.in | |
parent | core: raise the RLIMIT_NOFILE hard limit for all services by default (diff) | |
download | systemd-c35ee02c61d17b0656e16b0b2fa0449bda9df507.tar.xz systemd-c35ee02c61d17b0656e16b0b2fa0449bda9df507.zip |
units: bump the RLIMIT_NOFILE soft limit for all services that access the journal
This updates the unit files of all our serviecs that deal with journal
stuff to use a higher RLIMIT_NOFILE soft limit by default. The new value
is the same as used for the new HIGH_RLIMIT_NOFILE we just added.
With this we ensure all code that access the journal has higher
RLIMIT_NOFILE. The code that runs as daemon via the unit files, the code
that is run from the user's command line via C code internal to the
relevant tools. In some cases this means we'll redundantly bump the
limits as there are tools run both from the command line and as service.
Diffstat (limited to 'units/systemd-journal-remote.service.in')
-rw-r--r-- | units/systemd-journal-remote.service.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/units/systemd-journal-remote.service.in b/units/systemd-journal-remote.service.in index a94265f215..c1de676b5c 100644 --- a/units/systemd-journal-remote.service.in +++ b/units/systemd-journal-remote.service.in @@ -32,5 +32,9 @@ SystemCallArchitectures=native LockPersonality=yes LogsDirectory=journal/remote +# If there are many split up journal files we need a lot of fds to access them +# all in parallel. +LimitNOFILE=262144 + [Install] Also=systemd-journal-remote.socket |