Systemd service exits with:
code=exited, status=226/NAMESPACE
What does this mean?
Systemd service exits with:
code=exited, status=226/NAMESPACE
What does this mean?
It’s probably telling you that there’s a namespace violation. Why that is, boils down to how you run rest-server and configured its runtime environment. You’ll have to be more specific if you want a better answer.
That error means that systemd failed to setup the environment for the service. Did you use the example service? If yes, then make sure to customize the storage path at https://github.com/restic/rest-server/blob/master/examples/systemd/rest-server.service#L27 .
Yep this is it, thanks so much!