mirror of
https://github.com/minio/docs.git
synced 2025-07-02 05:02:40 +03:00
Closes #610 Did a QA pass after reports of some issues with the vault setup. Identified an issue where my local testing was done with 0.20.0, resulting in some errors on 0.21.0 due to dropping --mlock. Also did a few other general tune ups as I ran end-to-ends again using Vault + Systemd instead of vault in dev mode. Staging views in #minio-docs channel
33 lines
729 B
Desktop File
33 lines
729 B
Desktop File
[Unit]
|
|
Description=KES
|
|
Documentation=https://github.com/minio/kes/wiki
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
AssertFileIsExecutable=/usr/local/bin/kes
|
|
|
|
[Service]
|
|
WorkingDirectory=/etc/kes/
|
|
|
|
AmbientCapabilities=CAP_IPC_LOCK
|
|
|
|
User=kes
|
|
Group=kes
|
|
ProtectProc=invisible
|
|
|
|
ExecStart=/usr/local/bin/kes server --config=/opt/kes/config.yaml
|
|
|
|
# Let systemd restart this service always
|
|
Restart=always
|
|
|
|
# Specifies the maximum file descriptor number that can be opened by this process
|
|
LimitNOFILE=65536
|
|
|
|
# Specifies the maximum number of threads this process can create
|
|
TasksMax=infinity
|
|
|
|
# Disable timeout logic and wait until process is stopped
|
|
TimeoutStopSec=infinity
|
|
SendSIGKILL=no
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |