Last active
July 31, 2018 18:13
-
-
Save jun06t/0a1f01eb3a13e45948f9d8ea83d8b0a9 to your computer and use it in GitHub Desktop.
Consul agent systemd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### BEGIN INIT INFO | |
# Provides: consul | |
# Required-Start: $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Consul agent | |
# Description: Consul service discovery framework | |
### END INIT INFO | |
[Unit] | |
Description=Consul agent | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
User=consul | |
Group=consul | |
PIDFile=/var/run/consul/consul.pid | |
PermissionsStartOnly=true | |
ExecStartPre=-/bin/mkdir -p /var/run/consul | |
ExecStartPre=/bin/chown -R consul:consul /var/run/consul | |
ExecStart=/usr/local/bin/consul agent \ | |
-config-file=/usr/local/etc/consul/client_agent.json \ | |
-bind='{{ GetInterfaceIP "eth0" }}' \ | |
-pid-file=/var/run/consul/consul.pid | |
ExecReload=/bin/kill -HUP $MAINPID | |
LimitNOFILE=65536 | |
KillMode=process | |
KillSignal=SIGTERM | |
Restart=on-failure | |
RestartSec=42s | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment