Hello,
I have 3 nodes (1 'master' and 2 'childs'). I can using systemd autostart on the first (master) server. However, the 2nd and 3thrd don't start when using systemd. When starting the 2nd and 3thrd server manually by $ sudo multichaind chain1 -daemon, everything works smoothly.
I have the following file in /etc/systemd/system (on all 3 servers):
[Unit]
Description=MultiChain service
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=ubuntu
ExecStart=/usr/local/bin/multichaind chain1
[Install]
WantedBy=multi-user.target
Anyone an idea what I'm missing?
Many thanks.
Guy