Storage Node running on Raspberry Pi 4 not showing Dashboard

The OP’s post of the output includes the # symbol … which is why the post text is Header 1 rather than standard.

The prior OP post indicating OS level listening ports shows that 14002 is open.

My guess is the OP was trying to access the dashboard over a WAN connection, but OP has not clarified.

Hi I see that the post has time, but I just started to install it on a Pi 4 and I can’t access the Dashboard.
I don’t know if I have done the steps correctly
CONTAINER ID 8dc31bf72056
IMAGE storjlabs/storagenode:latest
COMMAND “/entrypoint”
CREATED 8 minutes ago
STATUS Restarting (1) 2 seconds ago
PORTS
NAMES storagenode

sudo netstat -lt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:2234 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:webmin 0.0.0.0:* LISTEN
tcp6 0 0 [::]:ftp [::]:* LISTEN
tcp6 0 0 [::]:2234 [::]:* LISTEN

docker inspect storagenode -f ‘{{ .HostConfig.PortBindings }}’
map[14002/tcp:[{ 14002}] 28967/tcp:[{ 28967}]]

docker exec -it storagenode grep console /app/config/config.yaml
Error response from daemon: Container 8dc31bf72056ecd93b4def2048b12194c8825516da04cbe1bfdea5bba78f77ae is restarting, wait until the container is running

I hope you can help me

Welcome to the forum @cryptomoneda!

Can you show your docker run command ? Remove any personal info from it.

sudo docker run -d --restart unless-stopped --stop-timeout 300 -p 28967:28967 -p 14002:14002 -e WALLET=“XXXXXX" -e EMAIL="cryptomoneda@protonmail.com" -e ADDRESS=“XXXXX:28967" -e STORAGE=“550GB” --mount type=bind,source="/home/pi/.local/share/storj/identity/storagenode",destination=/app/identity --mount type=bind,source="/mnt/storj",destination=/app/config --name storagenode storjlabs/storagenode:latest

Can you confirm those aren’t curly quotes in your command ?

Thank you very much, it was the quotes, I didn’t realize there were both types, that’s what happens when you use copy and paste.
Thank you very much.

1 Like