So while working to find out the vetting status of my nodes that I’m running under Raspberry Pi OS, I discovered that my file ownership might be incorrect. I had to use sudo
to get the earnings calculator to work. Checking one of my node paths I see that they’re owned by root, which explains the need for sudo. Is this expected? Should I push a chown
through the paths and update them to pi:pi or just leave these as is?
pi@storjpi:~ $ ls -l /mnt/storj1/storagenode1
total 60
-rw------- 1 root root 8447 Nov 12 03:25 config.yaml
drwxr-xr-x 2 pi pi 4096 Feb 17 23:47 identity
drwx------ 4 root root 4096 Nov 12 03:25 orders
-rw------- 1 root root 32768 Apr 3 19:21 revocations.db
drwx------ 6 root root 4096 Apr 5 15:21 storage
-rw------- 1 root root 1420 Apr 5 12:48 trust-cache.json
pi@storjpi:~ $