diff options
author | Daniel Black <daniel@mariadb.org> | 2020-07-27 18:54:21 +1000 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2020-07-28 08:08:20 +1000 |
commit | c81a2d23224e11f59475dfd53878dbf5cf2130e4 (patch) | |
tree | bbbfb2a3bf8fd4bb0349dbfdb8ecf3c206219ae5 | |
parent | 29851b677ebbd954278d5530bde8e77fb865988f (diff) | |
download | mariadb-git-c81a2d23224e11f59475dfd53878dbf5cf2130e4.tar.gz |
MDEV-23088: Change LimitNOFILE default from 16364 to 16384
Correct to a true 2^14 rather than some different number that
was actually just a number typo.
Bug report thanks to Hartmut Holzgraefe.
-rw-r--r-- | support-files/mariadb.service.in | 2 | ||||
-rw-r--r-- | support-files/mariadb@.service.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/support-files/mariadb.service.in b/support-files/mariadb.service.in index 1cc37dcc3e6..398b01f1f5d 100644 --- a/support-files/mariadb.service.in +++ b/support-files/mariadb.service.in @@ -134,7 +134,7 @@ TimeoutStopSec=900 ## # Number of files limit. previously [mysqld_safe] open-files-limit -LimitNOFILE=16364 +LimitNOFILE=16384 # Maximium core size. previously [mysqld_safe] core-file-size # LimitCore= diff --git a/support-files/mariadb@.service.in b/support-files/mariadb@.service.in index 7b8c2b72cc0..b260349040b 100644 --- a/support-files/mariadb@.service.in +++ b/support-files/mariadb@.service.in @@ -155,7 +155,7 @@ TimeoutStopSec=900 ## # Number of files limit. previously [mysqld_safe] open-files-limit -LimitNOFILE=16364 +LimitNOFILE=16384 # Maximium core size. previously [mysqld_safe] core-file-size # LimitCore= |