From 51bc612b4818e03ade5d89ab3f2265fb3f9fc5fc Mon Sep 17 00:00:00 2001 From: "Alexey A. Leonov" Date: Tue, 15 Oct 2024 09:41:32 +0700 Subject: [PATCH] added waring to remove binaries from bin after the platform migration (#444) Related to https://github.com/storj/storagenode-docker/issues/23 --- app/(docs)/node/faq/migrate-my-node/page.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/(docs)/node/faq/migrate-my-node/page.md b/app/(docs)/node/faq/migrate-my-node/page.md index 50f236ed3..16c10a4ed 100644 --- a/app/(docs)/node/faq/migrate-my-node/page.md +++ b/app/(docs)/node/faq/migrate-my-node/page.md @@ -129,5 +129,11 @@ The network-attached storage location could work, but it is neither supported no {% /callout %} {% callout type="warning" %} -Please, note - we intentionally specified`/mnt/storj2/storagenode-new` as the data source in the `--mount` parameter and not `/mnt/storj2/storagenode-new/storage` because the `storagenode` docker container will add a subfolder called`storage` to the path automatically. So please, make sure that your data folder contains a `storage` subfolder with all the data inside (`blobs` folder, database files, etc.), otherwise the node will start from scratch since it can't find the data in the right subfolder and will be disqualified in a few hours. +Please, note - we intentionally specified`/mnt/storj2/storagenode-new` as the data source in the `--mount` parameter and not `/mnt/storj2/storagenode-new/storage` because the `storagenode` docker container will add a subfolder called `storage` to the path automatically. So please, make sure that your data folder contains a `storage` subfolder with all the data inside (`blobs` folder, database files, etc.), otherwise the node will start from scratch since it can't find the data in the right subfolder and will be disqualified in a few hours. +{% /callout %} + +{% callout type="warning" %} +If you migrating across platforms (x86-64 -> x86-32, x86 -> ARM, etc.), please remove binaries from the `bin` subfolder in the storage location to allow the container to download binaries for your new platform. + +Related to these changes: https://github.com/storj/storagenode-docker/issues/23 {% /callout %}