From 78be64900bb9602dabdee793b37403cb3eccea2e Mon Sep 17 00:00:00 2001 From: Roganik Date: Sun, 6 Feb 2022 16:55:56 +0700 Subject: [PATCH] Add tips to url-migration docs --- site/src/docs/backup/url-migration/index.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/site/src/docs/backup/url-migration/index.md b/site/src/docs/backup/url-migration/index.md index d69e406f..73def609 100644 --- a/site/src/docs/backup/url-migration/index.md +++ b/site/src/docs/backup/url-migration/index.md @@ -29,3 +29,19 @@ If running in a docker container, the command becomes: docker ps # to find the container name docker exec -it remark42 remap --admin-passwd -f var/rules ``` + +#### Tips + +1. The command above sends a *request* to start the remap job. You can see the job execution logs by running: + +```shell +docker logs +``` + +2. If you see in logs an entry similar to `export failed with site "site1.com,site2" not found`, please run the command again and specify desired site with command line arguments. For example: + +```shell +docker exec -it remark42 remap --admin-passwd -f var/rules --site site1.com +``` + +