From 1974a835bb42294e968e9d0b05eb354e03265e0f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 31 Aug 2017 22:18:13 -0400 Subject: [PATCH] update installation article --- _articles/hosting/updating-on-premise.md | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _articles/hosting/updating-on-premise.md diff --git a/_articles/hosting/updating-on-premise.md b/_articles/hosting/updating-on-premise.md new file mode 100644 index 00000000..676113cc --- /dev/null +++ b/_articles/hosting/updating-on-premise.md @@ -0,0 +1,28 @@ +--- +layout: article +title: Updating your self-hosted installation +categories: [hosting] +featured: false +popular: false +tags: [hosting, update] +--- + +It is very important to keep your bitwarden installation up to date. Updates may include fixes that are important for the security of your bitwarden installation. Additionally, newer versions of client applications such as the browser extension and/or mobile apps may not support older versions of your self-hosted bitwarden server. + +We have made updating your bitwarden installation very simple. Use the same bitwarden Bash (macOS and Linux) or PowerShell (Windows) script that you obtained while installing bitwarden to your server to update your bitwarden installation. Run the following sequence of commands: + +{% icon fa-linux %} {% icon fa-apple %} Bash + + ./bitwarden.sh updateself + ./bitwarden.sh stop + ./bitwarden.sh update + ./bitwarden.sh start + +{% icon fa-windows %} PowerShell + + .\bitwarden.ps1 -updateself + .\bitwarden.ps1 -stop + .\bitwarden.ps1 -update + .\bitwarden.ps1 -start + +Your bitwarden installation should now be fully up to date and running.