mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-04-26 01:35:54 +03:00
[GH-ISSUE #363] issue setting as a service #208
Labels
No labels
SSO
Third party
better for forum
bug
bug
documentation
duplicate
enhancement
future Vault
future Vault
future Vault
good first issue
help wanted
low priority
notes
pull-request
question
troubleshooting
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vaultwarden#208
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 (Jan 23, 2019).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/363
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?
@Geobert commented on GitHub (Jan 23, 2019):
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
@pgaskin commented on GitHub (Jan 24, 2019):
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 (Jan 24, 2019):
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 :)
@pgaskin commented on GitHub (Jan 24, 2019):
Um, there is autofill. Go to the settings page and you can turn it on.
@Geobert commented on GitHub (Jan 24, 2019):
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 (Jan 24, 2019):
Oh, I thought you meant browser autofill, not desktop app autofill.
@ver-nyan commented on GitHub (Sep 25, 2025):
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).