Permission Denied, while creating node with clean install of Truenas Scale 24.04

Hello @Climbingkid,
Welcome to the forum!

You do not need to drop/clean anything. It’s clearly a permissions issue, so you just need to adjust them.
Since you migrated the node, the permissions were not applied correctly by the app (it do so only on clean setups, not migrated), so you need to figure out, with what user and group your NAS running the load.
I guess it should be apps user. So, I would suggest to change permissions to match it.
For example on my instance it’s apps:apps:

admin@truenas[~]$ ls -l /mnt/data/ix-applications/releases/storj/volumes                     
total 1
drwxr-xr-x 4 root root 4 Apr 30  2023 ix_volumes
admin@truenas[~]$ ls -l /mnt/data/ix-applications/releases/storj/volumes/ix_volumes 
total 17
drwxr-xr-x 5 apps apps 8 May  9 19:33 ix_data
drwxr-xr-x 2 apps apps 8 May  1  2023 ix_identity
admin@truenas[~]$ ls -l /mnt/data/ix-applications/releases/storj/volumes/ix_volumes/ix_data 
total 27
-rw------- 1 apps apps 10392 May  1  2023 config.yaml
drwx------ 4 apps apps     4 May  1  2023 orders
drwxr-xr-x 2 apps apps     2 May  9 19:33 retain
-rw------- 1 apps apps 32768 May  9 19:33 revocations.db
drwx------ 6 apps apps    55 May 20 23:28 storage
-rw------- 1 apps apps   933 May  9 19:33 trust-cache.json
admin@truenas[~]$ ls -l /mnt/data/ix-applications/releases/storj/volumes/ix_volumes/ix_identity 
total 27
-rw-r--r-- 1 apps apps  558 May  1  2023 ca.1682930897.cert
-rw-r--r-- 1 apps apps 1092 May  1  2023 ca.cert
-rw------- 1 apps apps  241 May  1  2023 ca.key
-rw-r--r-- 1 apps apps 1096 May  1  2023 identity.1682930897.cert
-rw-r--r-- 1 apps apps 1630 May  1  2023 identity.cert
-rw------- 1 apps apps  241 May  1  2023 identity.key
  1. Stop the application (do not remove it, it may delete your data altogether)
  2. Login to a terminal
  3. Change the owner for the data and identity locations:
sudo chown apps:apps -R /mnt/<dataset name>/path/to/data
sudo chown apps:apps -R /mnt/<dataset name>/path/to/identity
  1. Start the app and check logs
1 Like