https://github.com/etcd-io/etcd
Raw File
Tip revision: 8139dd3e550fb3c025d21e9ef253b3606683d383 authored by Sam Batschelet on 09 June 2021, 21:57:52 UTC
version: 3.5.0-rc.1
Tip revision: 8139dd3
etcd.service
[Unit]
Description=etcd key-value store
Documentation=https://github.com/etcd-io/etcd
After=network-online.target local-fs.target remote-fs.target time-sync.target
Wants=network-online.target local-fs.target remote-fs.target time-sync.target

[Service]
User=etcd
Type=notify
Environment=ETCD_DATA_DIR=/var/lib/etcd
Environment=ETCD_NAME=%m
ExecStart=/usr/bin/etcd
Restart=always
RestartSec=10s
LimitNOFILE=40000

[Install]
WantedBy=multi-user.target
back to top