I can't install the second node on the same PC, can you help?

Alright scratch that,
lets just try the original one I posted

sudo add-apt-repository \
   "deb [arch=armhf] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
1 Like

yes, this worked, docker ```
sudo apt-get install docker-ce docker-ce-cli containerd.io


installed

next steps?
docker pull storjlabs/storagenode:latest
cp -rp /root/.local/share/storj/identity /storjnode/

Alright excellent next time I should just follow my instincts.

1 Like

next steps?
docker pull storjlabs/storagenode:latest
and
cp -rp /root/.local/share/storj/identity /storjnode/

NODE is ONLINE
HOOOOORAY
but i cant log on dashboard

1 Like

You should be able to follow the next steps now.

1 Like

but
docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 35000:35000 \

im forwarded 35000 but i cant loing to odroid from other machine

In order to see the dashboard with a webpage you would need to enable it in the start command for docker -p localip 14002:14002

1 Like

dont understand :roll_eyes: i was think,when im wrote this line and forward 35000,it will be working

docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 35000:35000
-e WALLET=“0x62faFF04471F44EE15bD1fFE9d105995DE3d4a33”
-e EMAIL="testing@ymail.com"
-e ADDRESS=“staticIP:28968”
-e BANDWIDTH=“20TB”
-e STORAGE=“7.5TB”
–mount type=bind,source=“/root/.local/share/storj/identity/storagenode”,destination=/app/identity
–mount type=bind,source=“/root/storjdata”,destination=/app/config
–name storagenode storjlabs/storagenode:arm

no it needs to be -p 35000:14002

1 Like

so now, i have to stop my node?

Yes you need to stop the node and remove the container then restart it.

1 Like

this commands is correctly?

  1. Stop the running Storage Node container:
    docker stop -t 300 storagenode
  2. Remove the existing container:
    docker rm storagenode

yeah that looks right.

1 Like

this command?

docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 35000:14002
-e WALLET=“0x62faFF04471F44EE15bD1fFE9d105995DE3d4a33”
-e EMAIL="testing@ymail.com"
-e ADDRESS=“staticIP:28968”
-e BANDWIDTH=“20TB”
-e STORAGE=“7.5TB”
–mount type=bind,source="/root/.local/share/storj/identity/storagenode",destination=/app/identity
–mount type=bind,source="/root/storjdata",destination=/app/config
–name storagenode storjlabs/storagenode:arm

should be –name storagenode storjlabs/storagenode:latest

2 Likes

deathlessdd excellent for your help hand for new user like me

i hope,that will be steps for all new customers of storj

all works

I would add - please, do not publish your private information (i.e. dashboard) to the internet directly, use the remote access instead: https://documentation.storj.io/resources/faq/how-to-remote-access-the-web-dashboard

Also this option is no longer needed

I don’t understand how to create second node for second HDD too. Can you put here example please? What need to write into config files?

For docker version - nothing. Just generate a new identity, sign it with a new authorization token and run it using different external ports: How to add an additional drive? - Storj Node Operator Docs

1 Like