You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been having an issue with nfs-ganesha where I cannot create files from a client machine.
I have a gluster volume "vol1" with the following export:
EXPORT{
Export_Id = 1;
Path = /vol1;
Pseudo = "/vol1"; # NFSv4 pseudo path for this export. Eg: "/test_volume_pseudo"
CLIENT {
clients = 192.168.1.0/24;
access_type="RW";
}
Disable_ACL = TRUE;
From the client I mount successfully (at /mnt), but
touch /mnt/test
gives the following error
touch: setting times of '/mnt/test': No such file or directory
if I try to copy a file in:
cp: cannot create regular file '/mnt/test': Invalid argument.
I've got logging set to DEBUG but cannot see anything relevant showing up as to why the files aren't being created.
Any ideas?
The text was updated successfully, but these errors were encountered:
I've been having an issue with nfs-ganesha where I cannot create files from a client machine.
I have a gluster volume "vol1" with the following export:
EXPORT{
Export_Id = 1;
Path = /vol1;
Pseudo = "/vol1"; # NFSv4 pseudo path for this export. Eg: "/test_volume_pseudo"
CLIENT {
clients = 192.168.1.0/24;
access_type="RW";
}
Disable_ACL = TRUE;
Access_type = RW; # Access permissions
Squash = No_root_squash; # To enable/disable root squashing
Protocols = "4"; # NFS protocols supported
Transports = "UDP","TCP" ; # Transport protocols supported
SecType = "sys"; # Security flavors supported
}
From the client I mount successfully (at /mnt), but
touch /mnt/test
gives the following error
touch: setting times of '/mnt/test': No such file or directory
if I try to copy a file in:
cp: cannot create regular file '/mnt/test': Invalid argument.
I've got logging set to DEBUG but cannot see anything relevant showing up as to why the files aren't being created.
Any ideas?
The text was updated successfully, but these errors were encountered: