mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
bbedeec756
The configuration option max_open_files defaults to 100,000, but the salt-master service is only started with a limit of 16,384 open files. Therefore the higher limit cannot be applied and there will be a log message: Current values for max open files soft/hard setting: 16384/16384 The value for the 'max_open_files' setting, 100000, is higher than what the user running salt is allowed to raise to, 16384. Defaulting to 16384. This is related to #40173.
14 lines
321 B
Desktop File
14 lines
321 B
Desktop File
[Unit]
|
|
Description=The Salt Master Server
|
|
Documentation=man:salt-master(1) file:///usr/share/doc/salt/html/contents.html https://docs.saltstack.com/en/latest/contents.html
|
|
After=network.target
|
|
|
|
[Service]
|
|
LimitNOFILE=100000
|
|
Type=notify
|
|
NotifyAccess=all
|
|
ExecStart=/usr/bin/salt-master
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|