website logo
Create accountLogin
Home
DCS
Node
Resources
Help center
Navigate through spaces
Home
DCS
Node
Resources
Help center
⌘K
Storj Node Operator
Get Started
Quickstart Node Setup
Step 1. Understand Prerequisites
Step 2. Get an Authorization Token
Step 3. Setup Port Forwarding
Step 4. Configure QUIC
Step 5. Create an Identity
Step 6. Install Node Software
Guides
Concepts
Payout
FAQs
Moved Pages
Docs powered by archbee 
15min

How do I migrate my node to a new device?

To migrate your Node to a new drive or computer, you first need to copy both the contents of your storage folder, as well as your identity folder to the new location.

Windows
Linux
macOS

Your default identity folder is located in: %APPDATA%\Storj\Identity\storagenode

Your default orders folder is located in "%ProgramFiles%\Storj\Storage Node\orders"



To migrate your Windows storage node you can follow this guide: How to migrate the Windows GUI node from one physical location to another? The only difference - you do not need to share folders, since they are available locally, just use the local paths.



Also, you can enable WSL, install Ubuntu from the Microsoft store and use the Migrating with rsync guide. In this case your drives are mounted automatically. For example, D: disk will be mounted to the /mnt/d.



💻

Migrating from Docker CLI to a GUI Install on Windows

✍🏼

Migrating from Windows GUI installation to Docker CLI



Migrating with rsync

We will assume that your parameters look like this:

  • the source folder where the existing identity is located is /mnt/storj/identity/storagenode;
  • the source folder where the existing stored data is located is /mnt/storj/storagenode/storage;
  • the source folder where the existing orders folder is located is /mnt/storj/storagenode/orders;
  • the destination folder the existing identity will be copied to is/mnt/storj2/storagenode-new/identity;
  • the destination folder the existing stored data will be copied to is /mnt/storj2/storagenode-new/storage.
  • the destination folder the existing orders will be copied to is /mnt/storj2/storagenode-new/orders.

To migrate your identity, orders and data to the new location, you can use the rsync command (please, replace the example paths mentioned above to your own!):

  1. Open a new terminal
  2. Keep your original storage node running
  3. Copy the identity:
Text
|

4. Copy the orders

Text
|

5. Copy the data

Text
|

6. Repeat running the orders (step 4.) and data copying command (step 5.) a few more times until the difference would be negligible, then

7. Stop the storage node (see How do I shutdown my node for system maintenance? )

8. Remove the old container

Text
|

9. Run the copying command with a --delete parameter to remove deleted files from the destination:

Text
|
Text
|

10. Now you can copy config.yaml file and revocation.db to the new location:

Text
|

11. After you copied over all the necessary files, update your --mount parameters in your docker run command. For our example, it will look like this (we only show a partial example of the new--mount parameter lines, not the entire docker run command!):

Text
|

The network-attached storage location could work, but it is neither supported nor recommended!

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 calledstorage 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.

Updated 05 Nov 2022
Did this page help you?
Yes
No
UP NEXT
Migrating from Docker CLI to a GUI Install on Windows
Docs powered by archbee 
TABLE OF CONTENTS
Migrating with rsync