STORJ Node Configuration

Currently reading
STORJ Node Configuration

1
0
NAS
DS920+
Operating system
  1. Windows
Mobile operating system
  1. Android
Hello everyone, this is my first post and I search for STORJ term into the forum but no found much information.
Can somebody help me install STORJ into my DS920+ in order to rent my extra space? Thank you so much guys
 
Would suggest running it via Docker


Here is an example for a working node via docker-compose:

Code:
version: "3.5"
services:
  storej:
    image: storjlabs/storagenode:latest
    network_mode: "bridge"
    container_name: storej
    ports:
      - "28967:28967"
      - "14002:14002"
    volumes:
      - type: bind
        source: /yourLocalNASVolume/app/identity
        target: /app/identity
      - type: bind
        source: /yourLocalNASVolume/app/config
        target: /app/config
    environment:
      - WALLET="0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      - EMAIL="[email protected]"
      - ADDRESS="DDNS:28967"
      - STORAGE="2TB"
    restart: always
 
Last edited:
Thanks @Rusty for this summary!

I set it up today like this, but my Storj monitor showed a minor error regarding QUIC:
Code:
"QUIC is misconfigured. You must forward port 28967 for both TCP and UDP to enable QUIC.
See Step 3. Setup Port Forwarding - Storj Node Operator Docs on how to do this"

Root cause was located in the "ports" section of the compose script. It needed to be modified to the following, basically allowing both tcp and udp. Otherwise, docker is only opening the tcp connection.

Code:
    ...
    ports:
      - "28967:28967/tcp"
      - "28967:28967/udp"
      - "14002:14002"
    volumes:
    ...

Thanks again mate for posting! Cheers.
Maybe this helps for anyone else stumbling through web search over this posting.
 
Thanks @Rusty for this summary!

I set it up today like this, but my Storj monitor showed a minor error regarding QUIC:
Code:
"QUIC is misconfigured. You must forward port 28967 for both TCP and UDP to enable QUIC.
See Step 3. Setup Port Forwarding - Storj Node Operator Docs on how to do this"

Root cause was located in the "ports" section of the compose script. It needed to be modified to the following, basically allowing both tcp and udp. Otherwise, docker is only opening the tcp connection.

Code:
    ...
    ports:
      - "28967:28967/tcp"
      - "28967:28967/udp"
      - "14002:14002"
    volumes:
    ...

Thanks again mate for posting! Cheers.
Maybe this helps for anyone else stumbling through web search over this posting.
Considering the thread is over 2y old it is no wonder certain things changes. Tnx for the update.
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

Hello, during installation, I skipped QuickConnect as I read that using it would create a security risk...
Replies
0
Views
1,419
  • Question
Hyper Backup backs up your configuration with each run. Surely you have a backup task... so you should be...
Replies
8
Views
5,030
  • Solved
Thanks Rusty, I've been reading a few articles and guides, and been trying to find a better way to make...
Replies
2
Views
1,824
I went for it and my data remained in tact. Phew. Thanks a lot for your help.
Replies
4
Views
7,757

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Back
Top