Hi,
I need some help to understand NFS with ZFS and permissions. On my server, I have:
/u, /u/user1 and /u/user1/home are ZFS partitions. My server is a Samba4 DC too (can use nfsv4acls)
My /etc/exports:
On my client:
I don't understand the 'permission denied'. If I set a maproot=root, all files are set to root. (I lost the MYWWW\user1).
How can I share my directories with the same originals permissions? Thank you.
I need some help to understand NFS with ZFS and permissions. On my server, I have:
Code:
# ls -la /u
total 11
drwx--x--x 3 root wheel 3 Jul 9 16:39 .
drwxr-xr-x 20 root wheel 25 Apr 22 15:06 ..
drwx--x--x 3 root wheel 3 Jul 9 16:37 user1
# ls -l /u/user1
total 4
drwx-----x 5 MYWWW\user1 users 5 Jul 9 16:39 home
My /etc/exports:
Code:
V4: /u -sec=krb5p -network 10.35.66.0 -mask 255.255.255.0
/u
/u/user1
/u/user1/home
/u/user1/home/www
On my client:
Code:
# mount_nfs -o nfsv4 10.35.65.1:/ /u
# ls /u
ls: /u: Permission denied
I don't understand the 'permission denied'. If I set a maproot=root, all files are set to root. (I lost the MYWWW\user1).
How can I share my directories with the same originals permissions? Thank you.