mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-10 17:23:04 +03:00
issue setting as a service #2205
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Geobert on GitHub.
With this .service file:
I got with
systemctl status bitwarden_rs:with
journalctl -u bitwarden_rs.serviceand in
/var/log/syslogI can see:What am I missing?
@pgaskin commented on GitHub:
Try enabling the backports repository and updating systemd from there. I had a similar issue myself when setting up sandboxing.
Alternatively, you can remove most of the sandboxing options, as they aren't present in the version of systemd in debian 9 stable.
@Geobert commented on GitHub:
Thanks, I'll try that if I come back to bitwarden. I manage to launch with supervisord and was disappointed by the desktop client lack of Autofill and ssh agent :(
Let's close this issue for now :)
@Geobert commented on GitHub:
Btw, in
.envI have:ROCKET_ADDRESS=127.0.0.1 # Enable this to test mobile app
ROCKET_PORT=8000
and ROCKET_TLS pointing to my certificate and key
@Geobert commented on GitHub:
Are you sure? I've search a lot and stumble upon feature request: https://community.bitwarden.com/t/auto-type-autofill-for-logging-into-other-desktop-apps/158
@pgaskin commented on GitHub:
Um, there is autofill. Go to the settings page and you can turn it on.
@tyrone-wu commented on GitHub:
Hi srry for the necro, this issue can remain closed, im posting my fix in case anyone also ended up in the same situation as me.
I'm running the service in a proxmox privileged lxc on debian 12 and also got this error:
It wasn't the security configs in the service file that was causing the error, but the
nestingdisabled in the lxc that cause it (since I set the container as privileged).Enabling
nestingback fixed it for me while keeping the same service configs (im using the service config from https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/vaultwarden-install.sh).@pgaskin commented on GitHub:
Oh, I thought you meant browser autofill, not desktop app autofill.