New Storagenode on Docker Windows with linux container not working

I got this error when started new storage node:
nodestats:cache Get disk space usage query failed
nodestats:cache Get stats query failed
“error”: "node stats service error: rpc error: code = PermissionDenied desc = node not found:

also I have 37min uptime and no traffic
Storage Node Dashboard ( Node Version: v0.19.5 )

======================

ID 12wAitZrj3u3sk9thMCUTAurSFW3CHGTQEGaQSVWTMeqfEYy6nW
Last Contact 2s ago
Uptime 37m45s

               Available     Used     Egress     Ingress
 Bandwidth       25.0 TB      0 B        0 B         0 B (since Sep 1)
      Disk        7.0 TB      0 B

Bootstrap bootstrap.storj.io:8888
Internal 127.0.0.1:7778
External axxxx.xxxx.net:28967

Neighborhood Size 160

Hello, welcome to the forum! if you still have problems getting data, in order for us to better understand your issue, please post your full docker run storagenode command, what OS you are using, your latest logs, and results of
docker exec -it storagenode grep -c BEGIN /app/identity/ca.cert and
docker exec -it storagenode grep -c BEGIN /app/identity/identity.cert

Thanks!

1 Like

Windows 10 Pro 64 bit
docker run -d --restart unless-stopped -p 28967:28967 -e WALLET=“0x1F80467A8B233140ec7c3e4DDdCCD1D1B682e441” -e EMAIL="xxxxxx@xxxxxxx.com" -e ADDRESS=“xxxx.sxxxs.net:28967” -e BANDWIDTH=“25TB” -e STORAGE=“7000GB” -v c:\Storj\storagenode:/app/identity -v F::/app/config --name storagenode storjlabs/storagenode:beta

exec for ca result shows: 2
exec for identity shows: 3

Since my last post I got a change and there is some movement

Storage Node Dashboard ( Node Version: v0.19.5 )

======================

ID 12wAitZrj3u3sk9thMCUTAurSFW3CHGTQEGaQSVWTMeqfEYy6nW
Last Contact 0s ago
Uptime 9h6m56s

               Available         Used       Egress     Ingress
 Bandwidth       25.0 TB     226.2 MB     160.1 MB     66.1 MB (since Sep 1)
      Disk        7.0 TB      45.4 MB

Bootstrap bootstrap.storj.io:8888
Internal 127.0.0.1:7778
External xxxxx.xxxx.net:28967

Neighborhood Size 160

in the logs I’m still getting from time to time ERROR server rpc error: code = PermissionDenied desc = untrusted peer 1QzDKGHDeyuRxbvZhcwHU3syxTYtU1jHy5duAKuPxja3XC8ttk

also similar error here:

thank you @littleskunk for explaining it twice.

and I still have the same response: Error “server rpc error: code = PermissionDenied desc = info requested from untrusted peer”
It is explained already!

I just have another quick question.

what kind of traffic should I expect? There is not much movement at the moment…

On my storage node I see a bit more than 1 upload every 10 minutes and between that a lot of downloads. I guess your storage node is unvetted. An unvetted node will get only 5% of the uploads. So 1 upload every 3 hours? I don’t know if that expectation is correct.

Have you seen the dashboard API? 100 total audits is the magic line for getting vetted. With the dashboard API you can watch the progress. Storage node dashboard API (v0.19.0)

I will take a look at it. Thanks again.

You have used the -v option instead of --mount, as described in the documentation.
The difference is very dangerous in your case: if docker does not map the disk to the container for any reason, with the -v option it will create an empty disk inside the container. The customers’ data will be stored inside this container. When you then remove the container, the data will be removed with it.
In case of --mount it will just fail.
Please, replace the -v options to the --mount options ASAP. The --mount option has a different syntax. Please, read about it in the section Running the Storage Node of our Documentation.

Please, fix this problems ASAP and keep your node online.

1 Like

@heunland much apprieciated! reconfigured for mount and it works ok

Thx guys

1 Like

13 posts were merged into an existing topic: My Node is OFFLINE for 2 hours