Blog

Restore Vaultwarden password database from backup

Restore Vaultwarden password database from backup

Reading Time: < 1 minute

Now that you have your Vaultwarden password manager running, and your backups in place, you need to test those backups regularly. In this video, I will show you how to restore your Vaultwarden password database from backup, in case disaster strikes. I strongly suggest doing this regularly, so you can rest assured that your backups are valid and working. It will help you sleep better, I know I do!

Restore Vaultwarden password database from backup Read More
Backup Vaultwarden password manager running in docker

Backup your Vaultwarden password manager running in docker

Reading Time: < 1 minute

When you trust your personal and private account information to a password manager, you want to ensure you have reliable backups.

In my last video, I showed you how to set up Vaultwarden as a self-hosted password manager, and in this video, I will show you how to have a reliable and consistent backup of that password database. Now you are ready, in case disaster strikes and you need to restore your Vaultwarden password database.

Please find my docker-compose stack below to get you started:

version: "3.8"
services:
vaultwarden_backup:
image: bruceforce/vaultwarden-backup
container_name: vaultwarden_backup
restart: unless-stopped
init: true
volumes:
- /home/vikash/docker/vaultwarden/data:/data/
- /home/vikash/docker/vaultwarden_backup/backups:/backups/
- /home/vikash/docker/vaultwarden_backup/logs:/logs/
environment:
- BACKUP_DIR=/backups/
- LOG_DIR=/logs/
- CRON_TIME=0 5 * * *
- DELETE_AFTER=30
- TIMESTAMP=true
- BACKUP_ON_STARTUP=true
- BACKUP_ADD_DATABASE=true
- BACKUP_ADD_ATTACHMENTS=true
- BACKUP_ADD_CONFIG_JSON=true
- BACKUP_ADD_ICON_CACHE=true
- BACKUP_ADD_RSA_KEY=true
- LOG_LEVEL=INFO
- TZ= Europe/Amsterdam
Backup your Vaultwarden password manager running in docker Read More
Vaultwarden - selfhosted password manager in docker

Vaultwarden – self-hosted password manager in docker

Reading Time: < 1 minute

In this video, I will show you how to self-host and set up Vaultwarden in Docker. It is THE best password manager out there because you are in control of where the data is stored.

And the best part is you do not need to trust and pay some Cloud service to keep your passwords and accounts safe, while at the same time hoping that they will not get breached or hacked (historically speaking, they will).

My docker-compose, to help you get started:

services:
  vaultwarden:
    image: vaultwarden/server:latest
    container_name: vaultwarden
    restart: always
    environment:
      SIGNUPS_ALLOWED: "true"
    ports:
      - 11001:80
    volumes:
      - ./vw-data:/data

Find more information about Vaultwarden and Nginx Proxy manager below:
https://hub.docker.com/r/vaultwarden/server
https://nginxproxymanager.com/

Vaultwarden – self-hosted password manager in docker Read More
Single NSX node in VCF deployment for lab or demo

Single NSX node in VMware VCF deployment for lab or demo

Reading Time: < 1 minute

Did you know that you can deploy VMware VCF with only one NSX node? This is specifically very helpful if you are running a demo or lab with limited resources, but still want to experience VMware VCF. In this video, I will show you how to set that up.

Check out my video for VMware VCF deployment using Cloudbuilder here.

Find the commands used below and don’t forget to change paths accordingly:

Get the correct permissions using: 
su -
Generate the json file on the Cloudbuilder appliance: 
/opt/vmware/sddc-support/sos --jsongenerator --jsongenerator-input /home/admin/vcf511-homelab.xlsx --jsongenerator-design vcf511-limited
Copy the json file to your home directory on the Cloudbuilder appliance: 
cp /opt/vmware/sddc-support/cloud_admin_tools/Resources/vcf511-limited/vcf511-limited.json /home/admin/
Single NSX node in VMware VCF deployment for lab or demo Read More