Dashboard not working what am I doing wrong

Hi All,

I have found its not the first time this has happned to me on a Linux storj Docker setup and I am starting to think its a case of “problem exists between keybord and chair”

On my storj server I cannot get to the web GUI dashboard. I have read many forums and they all say navigate to your in my case its 192.168.0.40:14002.

My Docker setup is as follows:
docker run -d --restart unless-stopped --stop-timeout 300
-p 28969:28967
-p 127.0.0.1:14002:14002
-e WALLET=“0x138B29C26b84aCBf1529F0906E34757d8B1552c9”
-e EMAIL=“simon.**@gmail.com"
-e ADDRESS="
.duckdns.org:28969”
-e STORAGE=“1.7TB”
–mount type=bind,source="/Drive1/identity/",destination=/app/identity
–mount type=bind,source="/Drive1/data/",destination=/app/config
–name storagenode storjlabs/storagenode:beta

Am I missing somehing? in Docker am i suposed to be installing anything additanal to help the web page be displayed?

This is on a clean Ubuntu server and I am not an advanced user of Linux but know how to break things will ( hope that makes sence )

Kind Regards
Simon

Why are you using 192.168.0.40:14002 instead of 127.0.0.1:14002 or localhost:14002 ?

I am using 192.168.0.40:14002 to connect from a remote host as the ubuntu server does not come with a web browser installed or even a gui.

192.168.0.40 is the ip address of teh ubuntu server.

Regards
Simon

Do i need to install a web service or something on that lines… i am quite new to ubuntu server and Docker

In that case

should be

-p 14002:14002

Stop the container, remove the container, update your docker command then run it.

docker stop -t 300 storagenode
docker rm storagenode

Update the parameter as shown above

docker run with updated parameter

2 Likes

ha… is that all!

so you dont specify the local host ip address… would you know why this is?

Regards
Simon

Thanks that woked like a dream thanks!

1 Like

This may suggest you run more than one node on this machine. If that’s the case you should also use different ports for the dashboard.

1 Like

Yip I have done this.
Thanks again

1 Like

Sorry for necromance this post

Im having problems of this kind, i have two nodes on an ubuntu server

First node are working fine, second one is fresh new node, docker dashboard is working but web dashboard is not. Im using -p 14002:14002 for first node and -p 14003:14003 for second one

What are causing this? Can you help me please?

You need to use -p 14003:14002

in both nodes or only on second?

On the second node. The first port mentioned is the external port, the second is the port inside the container. I side the container the node will always use 14002 for the dashboard.

what about this? storj documentation of this things are nearly cero