Can't access dashboard

Hello all,

just started a node today, im very new to this.

the is installation was successful and the node is working fine, i can acess the dashboard from the computer the node is instaled but if i try to go to another computer on the same network i can’t access it.
I’m trying to access with internal IP - x.x.x.x:14002 no luck

the node is installed on a windows 10 machine.

appreciate some help.

Welcome to the forum @groove4x!

https://documentation.storj.io/resources/faq/how-to-remote-access-the-web-dashboard

1 Like

when you run the command of the storage node. there is 1 place where you specific 127.0.0.1:14002. you may remove or change it to 0.0.0.0:14002
i think that should work …

somethign like this
docker run -d --restart unless-stopped --stop-timeout 300 -p 28967:28967 -p 14002:14002 etc etc etc …

Since this is a windows node you will have to change it in the config.yaml file then restart your node for the changes to take effect.

Change:

# server address of the api gateway and frontend app
# console.address: 127.0.0.1:14002

to:

# server address of the api gateway and frontend app
console.address: 0.0.0.0:14002

and don’t forget to uncomment the console.address line. Depending on your windows firewall restrictions, you might need to open port 14002 to your local network.

thank you baker, that solved it :slight_smile:

1 Like