From 3812c5cf949fb3f8a2cb0594926cf43efe709d09 Mon Sep 17 00:00:00 2001 From: mutron3k Date: Thu, 17 Nov 2022 19:00:54 -0500 Subject: [PATCH 1/2] embellishing the cleanup step --- .../back-up-docker-installed-rancher.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md b/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md index f231e7f72c9..9c9863bb0d7 100644 --- a/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md +++ b/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md @@ -9,7 +9,7 @@ After completing your Docker installation of Rancher, we recommend creating back During the creation of your backup, you'll enter a series of commands, replacing placeholders with data from your environment. These placeholders are denoted with angled brackets and all capital letters (``). Here's an example of a command with a placeholder: ``` -docker run --volumes-from rancher-data- -v $PWD:/backup busybox tar pzcvf /backup/rancher-data-backup--.tar.gz /var/lib/rancher +docker run --name busybox-backup- --volumes-from rancher-data- -v $PWD:/backup busybox tar pzcvf /backup/rancher-data-backup--.tar.gz /var/lib/rancher ``` In this command, `` is a placeholder for the date that the data container and backup were created. `9-27-18` for example. @@ -51,14 +51,19 @@ This procedure creates a backup that you can restore if Rancher encounters a dis 1. From the data container that you just created (rancher-data-<DATE>), create a backup tarball (rancher-data-backup-<RANCHER_VERSION>-<DATE>.tar.gz). Use the following command, replacing each placeholder: ``` - docker run --volumes-from rancher-data- -v $PWD:/backup:z busybox tar pzcvf /backup/rancher-data-backup--.tar.gz /var/lib/rancher + docker run --name busybox-backup- --volumes-from rancher-data- -v $PWD:/backup:z busybox tar pzcvf /backup/rancher-data-backup--.tar.gz /var/lib/rancher ``` **Step Result:** A stream of commands runs on the screen. 1. Enter the `ls` command to confirm that the backup tarball was created. It will have a name similar to `rancher-data-backup--.tar.gz`. -1. Move your backup tarball to a safe location external to your Rancher Server. Then delete the `rancher-data-` container from your Rancher Server. +1. Move your backup tarball to a safe location external to your Rancher Server. Then delete the `rancher-data-` and busybox-backup- containers from your Rancher Server. + + ``` + docker rm rancher-data- + docker rm busybox-backup- + ``` 1. Restart Rancher Server. Replace `` with the name of your Rancher container: From 10f47111a2ae07c0c5431198e67b8cfa08ff4af3 Mon Sep 17 00:00:00 2001 From: mutron3k Date: Thu, 17 Nov 2022 19:03:22 -0500 Subject: [PATCH 2/2] Update back-up-docker-installed-rancher.md --- .../back-up-docker-installed-rancher.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md b/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md index 9c9863bb0d7..b019bc1aa2e 100644 --- a/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md +++ b/docs/how-to-guides/new-user-guides/backup-restore-and-disaster-recovery/back-up-docker-installed-rancher.md @@ -58,7 +58,7 @@ This procedure creates a backup that you can restore if Rancher encounters a dis 1. Enter the `ls` command to confirm that the backup tarball was created. It will have a name similar to `rancher-data-backup--.tar.gz`. -1. Move your backup tarball to a safe location external to your Rancher Server. Then delete the `rancher-data-` and busybox-backup- containers from your Rancher Server. +1. Move your backup tarball to a safe location external to your Rancher Server. Then delete the `rancher-data-` and `busybox-backup-` containers from your Rancher Server. ``` docker rm rancher-data-