Need Help: QNAP Storj App V. 1.1.3 Not Working - Service Unavailable

I created a new shared folder called storj01 with two folders inside, identity and storage


In identity you put your identity, storage you leave it empty

Then open Putty2
Insert username and password
3
Type q and y to exit help4
And finally you are in the Putty interface5

From here you have to enter the guide commands:

  • Download the latest version first

docker pull storjlabs/storagenode:latest

  • Then you tell him where the folders are

docker run --rm -e SETUP=“true”
–mount type=bind,source="/share/storj01/identity/storagenode",destination=/app/identity
–mount type=bind,source="/share/storj01/storage",destination=/app/config
–name storagenode storjlabs/storagenode:latest

  • Then you give it the command to start it with your data

docker run -d --restart unless-stopped --stop-timeout 300 \
-p 28967:28967/tcp \
-p 28967:28967/udp \
-p 14002:14002 \
-e WALLET="0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" \
-e EMAIL="user@example.com" \
-e ADDRESS="yourdomain.ddns.net:28967" \
-e STORAGE="2TB" \
--mount type=bind,source="/share/storj01/identity/storagenode",destination=/app/identity \
--mount type=bind,source="/share/storj01/storage",destination=/app/config \
--name storagenode storjlabs/storagenode:latest

Also you must have a static ip to the outside and open the doors of the router. If you don’t have a static ip you can use noip.
The nas also has a fixed ip in the local network, it is not in dhcp, otherwise it changes 192.168.1.2

4 Likes