Nebula / Service

Hi there, is anyone trying out Nebula? Have you been able to set it up to run as a Service? I am attempting to do son, but am a bit stuck. Everything I read or see says “we’ll leave that part up to you.” :slight_smile:

Answered my own question! For anyone looking to do this, the easy way,

Run as Service

wget -O /etc/systemd/system/nebula.service https://raw.githubusercontent.com/slackhq/nebula/master/examples/service_scripts/nebula.service

Change the permissions on the file

chmod 644 /etc/systemd/system/nebula.service

Reload the daemo

systemctl daemon-reload

Enable the service

systemctl enable nebula.service

Start the service

systemctl start nebula.service

Check the status of the service

systemctl status nebula.service

1 Like