Permssion denied (os error 13) on NFS share

After plenty of experimentation, this is what worked for us.

How to Mount Synology NFS Share on Proxmox Backup Server

Synology DSM 6.2.4-25556 Update 3, with BTRFS volume (required) [1.2.3.4]
Proxmox Backup Server 2.1-1 [1.2.3.5]


On Synology [1.2.3.4]:

1. Create Shared Folder 'xxxx' on a BTRFS Volume (volume1 in this case), and give 'admin' Read/Write permission.
2. NFS Permissions tab: Privilege: Read/Write, Squash: No mapping, Security: sys, Enabled Async (checked), Allow Connections (unchecked), Allow Subfolders (checked).



On PBS [1.2.3.5]:

3. Create and Mount 'xxxx'

mkdir /mnt/xxxx mount 1.2.3.4:/volume1/xxxx /mnt/xxxx


4. Add Datastore 'xxxx' using Backing path: /mnt/xxxx
5. Open/Refresh Datastore page (you should see Error 13 on 'xxxx')
6. Umount 'xxxx'


umount /mnt/xxxx


On Synology:

7. Open Shared Folder 'xxxx', NFS Permissions, and change Squash: Map all users to admin
8. Browse to 'xxxx' and Delete '.lock' file



On PBS:

9. Remount 'xxxx'

mount 1.2.3.4:/volume1/xxxx /mnt/xxxx

10. Open/Refresh Datastore page (Error 13 should clear)
11. Perform host backup on a Proxmox Node to verify (e.g., /etc folder which is usually small). This assumes you've already connected Node to PBS (add Cluster Storage PBS Server).


proxmox-backup-client backup nodeABC-etc.pxar:/etc --repository 1.2.3.5:xxxx


Notes

I suspect this process highlights a bug in PBS datastore creation. It requires 'backup' uid/gid 34:34 to create the .chunks folders, but seems to prefer root after creation (for UI and client backups). It wasn't necessary to create a 'backup' user on Synology; that just led to uid/gid headaches.
Thanks @grantph for sharing your solution. That solved it for me as well.
 
shame there still is real fix for this... still does not work as of today with a truenas nfs4 zfs share....
 
1654513349395.png

I constantly get this when trying to create a datastore with a mount I did in the shell:

mount -t nfs4 192.168.1.10:/mnt/xxxx/yyyy /mnt/nfsbackup1

Mount works fine... in shell I can access, create, read, whatnot the files.. However adding them into pbs is impossible

this share points to a truenas nfs4 share with remapped user/group to a (dummy) truenas user.

1654513532884.png

and again...

1654513558271.png

Seriously??? So much for an error that actually means something..
 
Last edited:
Mount works fine... in shell I can access, create, read, whatnot the files.. However adding them into pbs is impossible
can you do that also with the 'backup' user and not root? nearly everything related to backups is done with that user and not root
 
Hello together

I had the same problem. The backup service runs under a dedicated user named "backup". This user must have access to the mounted NFS share.

Simple:

Code:
chown backup:backup /mnt/<your-volume>/
chmod 775 /mnt/<your-volume>/

Then I could create the datastore via web interface.

Maybe this will help someone.

Best regards
 
  • Like
Reactions: neptrio
After plenty of experimentation, this is what worked for us.

How to Mount Synology NFS Share on Proxmox Backup Server

Synology DSM 6.2.4-25556 Update 3, with BTRFS volume (required) [1.2.3.4]
Proxmox Backup Server 2.1-1 [1.2.3.5]


On Synology [1.2.3.4]:

1. Create Shared Folder 'xxxx' on a BTRFS Volume (volume1 in this case), and give 'admin' Read/Write permission.
2. NFS Permissions tab: Privilege: Read/Write, Squash: No mapping, Security: sys, Enabled Async (checked), Allow Connections (unchecked), Allow Subfolders (checked).



On PBS [1.2.3.5]:

3. Create and Mount 'xxxx'

mkdir /mnt/xxxx mount 1.2.3.4:/volume1/xxxx /mnt/xxxx


4. Add Datastore 'xxxx' using Backing path: /mnt/xxxx
5. Open/Refresh Datastore page (you should see Error 13 on 'xxxx')
6. Umount 'xxxx'


umount /mnt/xxxx


On Synology:

7. Open Shared Folder 'xxxx', NFS Permissions, and change Squash: Map all users to admin
8. Browse to 'xxxx' and Delete '.lock' file



On PBS:

9. Remount 'xxxx'

mount 1.2.3.4:/volume1/xxxx /mnt/xxxx

10. Open/Refresh Datastore page (Error 13 should clear)
11. Perform host backup on a Proxmox Node to verify (e.g., /etc folder which is usually small). This assumes you've already connected Node to PBS (add Cluster Storage PBS Server).


proxmox-backup-client backup nodeABC-etc.pxar:/etc --repository 1.2.3.5:xxxx


Notes

I suspect this process highlights a bug in PBS datastore creation. It requires 'backup' uid/gid 34:34 to create the .chunks folders, but seems to prefer root after creation (for UI and client backups). It wasn't necessary to create a 'backup' user on Synology; that just led to uid/gid headaches.
Work for me. THX
 
thank you, this is the real solution currently.
That solution solved my issue too, so thank you!
I 'd like to add following:
My home-LAB setup consists of PVE & PBS on the same proxmox host. PBS has 2 datastores, "pbs-local" as local one (local zfs dataset) and "pbs-nfs" as nfs share on synology NAS. So VMs from the local zfs-vm dataset are being backed-up on to the local zfs-pbs dataset. After that PBS-remote-sync job syncs those two datastores (pull from pbs-local to pbs-nfs).
But, before PBS was installed, PVE had (and still has) vzdump nfs storage mounted from the same Synology nfs server and I had no such permission issues at all.
So, obviously PVE & PBS are not treating nfs mount the same way ... NFS permissions are appropriate for PVE but not for PBS ?! ... May we ask why ? .... Honestly I wasn't expecting these problems since we are talking about two products from "the same house " that should be very native one to another

But, besides this issue everything works perfect ... I'm syncing two datastores from the same PBS host w/o physical remote-pbs host

BR

Tonci
 
Last edited:
Hello Everyone,

Jumping in as I had a similar issue while trying to mount a Hetzner box as DataStore in PBS.
The solution was to provide the "backup" user uid and gid in the mount command:

Bash:
mount.cifs //XXXX.your-storagebox.de/backup /mnt/mountPoint -o user=XXXX,vers=3.0,uid=34,gid=34

The uid and gid 34 -> backup user

You can check the passwd file to confirm before typing the command above:

Bash:
cat /etc/passwd | grep -i backup | less

You can proceed and create the DataStore on your PBS from there, it should work on first try.


Cheers,
Varb
 
Good day all!

I've been trying to get this to work for 3 days now with no luck. I have a NFS share from TrueNAS with mapall to my proxmox user and group. Additionally, I made a "backup" user with UID 34 within TrueNAS that belongs to the proxmox group. In terminal, I'm able to mount and write to the NFS share. However, I cannot for the life of me add a datastore within PSB. The error I'm receiving is:

authentication failed - invalid ticket - expired

Any help would be greatly appreciated!
 
Good day all!

I've been trying to get this to work for 3 days now with no luck. I have a NFS share from TrueNAS with mapall to my proxmox user and group. Additionally, I made a "backup" user with UID 34 within TrueNAS that belongs to the proxmox group. In terminal, I'm able to mount and write to the NFS share. However, I cannot for the life of me add a datastore within PSB. The error I'm receiving is:

authentication failed - invalid ticket - expired

Any help would be greatly appreciated!
Correction, after refreshing the webpage, I'm getting "EPERM: operation not permitted", AGAIN. I changed the permissions of the mount point to 775 and owner to guest:guest. No luck. Any idea what I'm doing wrong?
 
For those of you with a Synology NAS and using a NFS share, here's a blog post on a solution that does NOT involve flipping the squash mode half way through the datastore creation process. This procedure should cleanly succeed at all steps with no workarounds or errors. This process is not the same as covered in this thread. Also no need to delete lock files.

How To: Setup Synology NFS for Proxmox Backup Server Datastore
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!