Ed_S
(Ed S)
25. Februar 2025 um 16:04
5
Ein weiterer Ansatz zur Migration, anstatt Backup und Wiederherstellung, ist die Verwendung von rsync. Ich habe es noch nicht gemacht, aber hier ist ein Rezept:
This method is different than restoring file in UI.
Maybe there is a more downtime but it’s simpler for linux folks without Discourse knowledge and it’s easy to automate.
Prepare new VPS
First, prepare our new Current Ubuntu LTS VPS with empty Discourse dir, OS upgrade and Docker install
sudo mkdir -p /var/discourse
sudo apt-get update
sudo apt-get dist-upgrade
wget -qO- https://get.docker.com/ | sh
Then, make sure that we are on latest installed kernel and other libraries by just restarting …