mkdir: created directory '/home/ansible/.config/systemd/user' 👾[go-webapp]$ cat > ~/.config/systemd/user/hello-go.service [Unit] Description=Hello GO webapp [Service] Type=simple ExecStart=%h/go/bin/hello-go 👾[go-webapp]$ 🔥 Start hello-go service 👾[go-webapp]$ systemctl --user start hello-go 👾[go-webapp]$ 🔥 Check hello-go service 👾[go-webapp]$ systemctl --user status hello-go ● hello-go.service - Hello GO webapp Loaded: loaded (/home/ansible/.config/systemd/user/hello-go.service; stati> Active: active (running) since Wed 2020-10-14 22:02:36 UTC; 8s ago Main PID: 4835 (hello-go) Tasks: 5 (limit: 2344) Memory: 964.0K CPU: 3ms CGroup: /user.slice/user-1000.slice/user@1000.service/hello-go.service └─4835 /home/ansible/go/bin/hello-go Oct 14 22:02:36 go-webapp systemd[585]: Started Hello GO webapp. 👾[go-webapp]$