Hello,
I'm trying to mount a NFS share asynchronously and without remote locks. I added 2 options to my storage.cfg, changing
to
Then I rebooted and run a cat /proc/mounts:
While the "nolock" option is now used, the async is completely ignored. What should I do to tell Proxmox to mount that NFS share with async option?
Thank you very much!
I'm trying to mount a NFS share asynchronously and without remote locks. I added 2 options to my storage.cfg, changing
Code:
options vers=3
Code:
options vers=3,async,nolock
Then I rebooted and run a cat /proc/mounts:
Code:
10.0.0.252:/proxmox /mnt/pve/proxmox nfs rw,relatime,vers=3,rsize=65536,wsize=65536,namlen=255,hard,nolock,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.0.0.252,mountvers=3,mountport=4046,mountproto=udp,local_lock=all,addr=10.0.0.252 0 0
Thank you very much!