Dieses Tutorial ist eine Fortsetzung von Einrichtung von Standalone Uptime Kuma auf Ubuntu mit einem Reverse-Proxy.
Dieses Tutorial erklärt dir, wie du deine Uptime Kuma-Instanz sicherst und wiederherstellst.
Die Zeit, die du für das Befolgen dieses Tutorials benötigst, liegt bei etwa 3-5 Minuten.
Du benötigst eine Uptime Kuma-Instanz, die nicht per Docker eingerichtet wurde.
sudo -s
ein, um Root-Rechte zu erhalten.Enter
.zip
(zusammen mit unzip
) mittels apt install -y zip unzip
.Enter
, um fortzufahren.systemctl stop uptime-kuma
.exit
ein, um die Root-Shell zu verlassen.zip -r uptimekuma-backup.zip ./uptime-kuma/data
ein, um ein Backup deiner Uptime-Kuma-Daten zu erstellen.sudo systemctl start uptime-kuma
neu.exit
ein, um die SSH-Sitzung zu verlassen.Nun hast du ein Backup deiner Uptime Kuma Daten in der Datei uptimekuma-backup.zip
im Home-Verzeichnis des Benutzers, mit dem du dich auf deinem Server angemeldet hast.
Warnung! Dieser Ablauf wird deine aktuellen Uptime Kuma-Daten überschreiben!
Um dieses Tutorial nutzen zu können, muss sich die Backup-Datei im Home-Verzeichnis des Benutzers befinden, mit dem du dich anmeldest. Wenn die Datei sich nicht dort befindet, kannst du diese mit SCP
oder SFTP
auf deinen Server hochladen.
Wenn nur die Datenbank defekt ist, kannst du diese sehr einfach wiederherstellen.
Wenn die gesamte Uptime Kuma-Instanz defekt ist, musst du zuerst die aktuelle Instanz löschen und dann das Backup wiederherstellen. Du musst zunächst die aktuelle Instanz mit dem Befehl rm -r uptime-kuma
löschen und kannst sie dann neu installieren, indem du Schritt 4 des Installations-Tutorials durchführst.
sudo systemctl stop uptime-kuma
ein, um Root-Rechte zu erhalten.Enter
.rm -r uptime-kuma/data
ein, um die aktuellen Uptime-Kuma-Daten zu löschen.mv uptimekuma-backup.zip uptime-kuma && cd uptime-kuma
an den richtigen Ort.unzip uptimekuma-backup.zip
ein, um die Sicherung wiederherzustellen.sudo systemctl start uptime-kuma
ein, um den Uptime Kuma-Dienst wieder zu starten.Du kannst nun deine Uptime Kuma-Instanz sichern und wiederherstellen.
Vielen Dank, dass du dieses Tutorial gelesen hast.
Copyright (c) 2023 Konstantin Protzen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the file; or
The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license (unless I am permitted to submit under a different license), as indicated in the file; or
The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the license(s) involved.