2019-06-15 23:02:44 +00:00
|
|
|
# lnd service
|
|
|
|
# /etc/systemd/system/lnd.service
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=LND Lightning Daemon
|
|
|
|
Wants=bitcoind.service
|
|
|
|
After=bitcoind.service
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
ExecStartPre=/usr/bin/pre_lnd.sh
|
|
|
|
ExecStartPre=/usr/bin/wait_on_bitcoin.sh
|
2019-08-24 20:45:39 +00:00
|
|
|
ExecStart=/usr/local/bin/lnd --caches.channel-cache-size=35000
|
2019-08-30 01:37:15 +00:00
|
|
|
ExecStartPost=echo 'abc' > /mnt/hdd/mynode/lnd/data/chain/bitcoin/mainnet/poke_login
|
2019-06-15 23:02:44 +00:00
|
|
|
|
|
|
|
User=bitcoin
|
|
|
|
Group=bitcoin
|
|
|
|
Type=simple
|
|
|
|
KillMode=control-group
|
|
|
|
LimitNOFILE=128000
|
|
|
|
TimeoutSec=240
|
2019-08-13 03:38:47 +00:00
|
|
|
Nice=-1
|
2019-06-15 23:02:44 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=1
|
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
|
|
|
SyslogIdentifier=lnd
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|