Hello,
I’m trying to setup my second node on the same linux box. I have tried all this:
sudo docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 14003:14003
-e WALLET=“0x”
-e EMAIL=“info@”
-e ADDRESS=“node2.kozow.com:28968”
-e STORAGE=“1TB”
–mount type=bind,source="/mnt/storj/storj/node1/identity",destination=/app/identity
–mount type=bind,source="/mnt/storj/storj/node1/storage",destination=/app/config
–name node1 storjlabs/storagenode:latest
sudo docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 14003:14003
-e WALLET=“0x”
-e EMAIL=“info@”
-e ADDRESS=“node2.kozow.com:28967”
-e STORAGE=“1TB”
–mount type=bind,source="/mnt/storj/storj/node1/identity",destination=/app/identity
–mount type=bind,source="/mnt/storj/storj/node1/storage",destination=/app/config
–name node1 storjlabs/storagenode:latest
sudo docker run -d --restart unless-stopped --stop-timeout 300
-p 28968:28967
-p 14003:14002
-e WALLET=“0x”
-e EMAIL=“info@”
-e ADDRESS=“node2.kozow.com:28968”
-e STORAGE=“1TB”
–mount type=bind,source="/mnt/storj/storj/node1/identity",destination=/app/identity
–mount type=bind,source="/mnt/storj/storj/node1/storage",destination=/app/config
–name node1 storjlabs/storagenode:latest
Ports are open on the router like:
-p 28968:28967 \
-p 14003:14003 \
The error it’s:
ERROR contact:service ping satellite failed
I also tried to:
- Disable firewall.
- Identity checked correctly: 2 and 3.
- DMZ the IP on the router.
My setup:
outside world => 28968
router => 28968 => 28967
node machine => docker
-p 28968:28967 \
Thank you.