You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
19 lines
386 B
4 years ago
|
[Unit]
|
||
|
Description=Etcd Server
|
||
|
After=network.target
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Type=notify
|
||
|
WorkingDirectory=/var/lib/etcd/
|
||
|
EnvironmentFile=-/etc/etcd/etcd.conf
|
||
|
User=etcd
|
||
|
# set GOMAXPROCS to number of processors
|
||
|
ExecStart=/bin/bash -c "GOMAXPROCS=$(nproc) /usr/sbin/etcd"
|
||
|
Restart=on-failure
|
||
|
LimitNOFILE=65536
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|