mirror of
https://github.com/ceph/ceph
synced 2025-02-06 10:23:52 +00:00
20 lines
528 B
SYSTEMD
20 lines
528 B
SYSTEMD
|
[Unit]
|
||
|
Description=Ceph cluster manager daemon
|
||
|
After=network-online.target local-fs.target time-sync.target
|
||
|
Wants=network-online.target local-fs.target time-sync.target
|
||
|
PartOf=ceph-mgr.target
|
||
|
|
||
|
[Service]
|
||
|
LimitNOFILE=1048576
|
||
|
LimitNPROC=1048576
|
||
|
EnvironmentFile=-/etc/sysconfig/ceph
|
||
|
Environment=CLUSTER=ceph
|
||
|
ExecStart=/usr/bin/ceph-mgr -f --cluster ${CLUSTER} --id %i --setuser ceph --setgroup ceph
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
Restart=on-failure
|
||
|
StartLimitInterval=30min
|
||
|
StartLimitBurst=3
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=ceph-mgr.target
|