From 91e375fda763689409d2a748cce445b0fcc0f338 Mon Sep 17 00:00:00 2001
From: pollfly <75068813+pollfly@users.noreply.github.com>
Date: Wed, 2 Nov 2022 16:49:24 +0200
Subject: [PATCH] domain >>> address (#357)
---
docs/faq.md | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/faq.md b/docs/faq.md
index c3e3b299..17293626 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -14,7 +14,7 @@ title: FAQ
* [Can I store the model configuration file as well?](#store-model-configuration)
* [I am training multiple models at the same time, but I only see one of them. What happened?](#only-last-model-appears)
* [Can I log input and output models manually?](#manually-log-models)
-* [Models are not accessible from the UI after I migrated ClearML Server to a new domain. How do I fix this?](#migrate_server_models)
+* [Models are not accessible from the UI after I migrated ClearML Server to a new address. How do I fix this?](#migrate_server_models)
* [Models are not accessible from the UI after I moved them (different bucket / server). How do I fix this?](#relocate_models)
**Experiments**
@@ -46,7 +46,7 @@ title: FAQ
* [Is there something ClearML can do about uncommitted code running?](#help-uncommitted-code)
* [I read there is a feature for centralized model storage. How do I use it?](#centralized-model-storage)
* [When using PyCharm to remotely debug a machine, the Git repo is not detected. Do you have a solution?](#pycharm-remote-debug-detect-git)
-* [Debug images and / or artifacts are not loading in the UI after I migrated ClearML Server to a new domain. How do I fix this?](#migrate_server_debug)
+* [Debug images and / or artifacts are not loading in the UI after I migrated ClearML Server to a new address. How do I fix this?](#migrate_server_debug)
**Remote Debugging (ClearML PyCharm Plugin)**
@@ -213,10 +213,10 @@ and [OutputModel](references/sdk/model_outputmodel.md) classes.
-**Models are not accessible from the UI after I migrated ClearML Server to a new domain. How do I fix this?**
+**Models are not accessible from the UI after I migrated ClearML Server to a new address. How do I fix this?**
This can happen if your models were uploaded to the ClearML files server, since the value registered was their full URL
-at the time of registration (e.g. `https://files./path/to/model`).
+at the time of registration (e.g. `https://files./path/to/model`).
To fix this, the registered URL of each model needs to be replaced with its current URL.
@@ -248,7 +248,7 @@ To replace the URL of each model, execute the following commands:
**Models are not accessible from the UI after I moved them (different bucket / server). How do I fix this?**
This can happen if your models were uploaded to the ClearML files server, since the value registered was their full URL
-at the time of registration (e.g. `https://files./path/to/model`).
+at the time of registration (e.g. `https://files./path/to/model`).
To fix this, the registered URL of each model needs to be replaced with its current URL:
@@ -666,20 +666,20 @@ repository / commit ID. For detailed information about using the plugin, see the
-**Debug images and/or artifacts are not loading in the UI after I migrated ClearML Server to a new domain. How do I fix this?**
+**Debug images and/or artifacts are not loading in the UI after I migrated ClearML Server to a new address. How do I fix this?**
This can happen if your debug images and / or artifacts were uploaded to the ClearML file server, since the value
-registered was their full URL at the time of registration (e.g. `https://files./path/to/artifact`).
+registered was their full URL at the time of registration (e.g. `https://files./path/to/artifact`).
To fix this, the registered URL of each debug image and / or artifact needs to be replaced with its current URL.
-* For **debug images**, use the following command. Make sure to insert the old domain and the new domain that will replace it
+* For **debug images**, use the following command. Make sure to insert the old address and the new address that will replace it
```bash
curl --header "Content-Type: application/json" \
--request POST \
--data '{
"script": {
- "source": "ctx._source.url = ctx._source.url.replace('https://files.', 'https://files.')",
+ "source": "ctx._source.url = ctx._source.url.replace('https://files.', 'https://files.')",
"lang": "painless"
},
"query": {