1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-23 18:34:02 +02:00
Asaad Mahmood bf1c1a82b1
Focalboard Website Update V2 (#4391)
* Updating focalboard website

* Updating video

* Updating ui

* Updating header

* Updating board views and adding loop

* Updating docs pages

* Updating blog

* Updating UI

* Updating downloads page

* Updating teams item

* Updating downloads page

* Updating UI

* Updating docs

* Updating UI

* Updating lucky orange

* Updating link

* Updating intro text

* Updating css version

* Minor UI Fixes

* Updating css

* Updating css version

* Updating css version
2023-01-25 07:37:34 +05:00

36 lines
1.2 KiB
Markdown

---
title: "Upgrading Personal Server"
date: "2021-04-13T12:02:23-08:00"
subsection: Personal Edition
weight: 3
---
Follow these steps to upgrade an existing Personal Server installation that was previously set up with the [setup guide here](../ubuntu).
Use the URL of the Ubuntu archive package, `focalboard-server-linux-amd64.tar.gz`, from the appropriate [release in GitHub](https://github.com/mattermost/focalboard/releases).
Create and use a clean directory, or delete any existing packages first, then run:
```
# Download the new version (e.g. 0.9.2 here, check the release for the latest one)
wget https://github.com/mattermost/focalboard/releases/download/v0.9.2/focalboard-server-linux-amd64.tar.gz
tar -xvzf focalboard-server-linux-amd64.tar.gz
# Stop the server
sudo systemctl stop focalboard.service
# Back up the old version
sudo mv /opt/focalboard /opt/focalboard-old
sudo mv focalboard /opt
# Copy config and move uploaded files over
sudo mv /opt/focalboard-old/files /opt/focalboard
sudo cp /opt/focalboard-old/config.json /opt/focalboard
# Start the server
sudo systemctl start focalboard.service
# (Optional) delete the backup after verifying
sudo rm -rf /opt/focalboard-old
```