Does NFS requires a directory with full permission in order to share with other clients?
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have set up NFS share and it is working properly with 770 or 777 permission on the directory but the minute I have the permission for the group like 760 or 750 then it stops work and I can't access the share( it says permission denied ).
when the permission is:
chmod 770 /public
then it works properly but when the permission is:
chmod 760 /public
It does not let me access the share giving me an error saying permission denied.
linux centos permissions nfs nfsv4
New contributor
add a comment |
up vote
0
down vote
favorite
I have set up NFS share and it is working properly with 770 or 777 permission on the directory but the minute I have the permission for the group like 760 or 750 then it stops work and I can't access the share( it says permission denied ).
when the permission is:
chmod 770 /public
then it works properly but when the permission is:
chmod 760 /public
It does not let me access the share giving me an error saying permission denied.
linux centos permissions nfs nfsv4
New contributor
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have set up NFS share and it is working properly with 770 or 777 permission on the directory but the minute I have the permission for the group like 760 or 750 then it stops work and I can't access the share( it says permission denied ).
when the permission is:
chmod 770 /public
then it works properly but when the permission is:
chmod 760 /public
It does not let me access the share giving me an error saying permission denied.
linux centos permissions nfs nfsv4
New contributor
I have set up NFS share and it is working properly with 770 or 777 permission on the directory but the minute I have the permission for the group like 760 or 750 then it stops work and I can't access the share( it says permission denied ).
when the permission is:
chmod 770 /public
then it works properly but when the permission is:
chmod 760 /public
It does not let me access the share giving me an error saying permission denied.
linux centos permissions nfs nfsv4
linux centos permissions nfs nfsv4
New contributor
New contributor
New contributor
asked 11 hours ago
Faiz Orz
11
11
New contributor
New contributor
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago
add a comment |
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The user account you use to access the share, needs to have the required permissions to access it, the same way as a "normal" directory (i.e. on the local disk).
Since you can access it with 0770
permissions set, your user account apparently is a member of the same group as the share itself.
To put it another way: if you make some normal directory, say /test
and set permissions to 0740
you would also only be able to access it, if you are the owner of /test
. This is not a special thing inn NFS or something like that.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The user account you use to access the share, needs to have the required permissions to access it, the same way as a "normal" directory (i.e. on the local disk).
Since you can access it with 0770
permissions set, your user account apparently is a member of the same group as the share itself.
To put it another way: if you make some normal directory, say /test
and set permissions to 0740
you would also only be able to access it, if you are the owner of /test
. This is not a special thing inn NFS or something like that.
add a comment |
up vote
0
down vote
The user account you use to access the share, needs to have the required permissions to access it, the same way as a "normal" directory (i.e. on the local disk).
Since you can access it with 0770
permissions set, your user account apparently is a member of the same group as the share itself.
To put it another way: if you make some normal directory, say /test
and set permissions to 0740
you would also only be able to access it, if you are the owner of /test
. This is not a special thing inn NFS or something like that.
add a comment |
up vote
0
down vote
up vote
0
down vote
The user account you use to access the share, needs to have the required permissions to access it, the same way as a "normal" directory (i.e. on the local disk).
Since you can access it with 0770
permissions set, your user account apparently is a member of the same group as the share itself.
To put it another way: if you make some normal directory, say /test
and set permissions to 0740
you would also only be able to access it, if you are the owner of /test
. This is not a special thing inn NFS or something like that.
The user account you use to access the share, needs to have the required permissions to access it, the same way as a "normal" directory (i.e. on the local disk).
Since you can access it with 0770
permissions set, your user account apparently is a member of the same group as the share itself.
To put it another way: if you make some normal directory, say /test
and set permissions to 0740
you would also only be able to access it, if you are the owner of /test
. This is not a special thing inn NFS or something like that.
answered 10 hours ago
Hkoof
1,02268
1,02268
add a comment |
add a comment |
Faiz Orz is a new contributor. Be nice, and check out our Code of Conduct.
Faiz Orz is a new contributor. Be nice, and check out our Code of Conduct.
Faiz Orz is a new contributor. Be nice, and check out our Code of Conduct.
Faiz Orz is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f481255%2fdoes-nfs-requires-a-directory-with-full-permission-in-order-to-share-with-other%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Does the user account you're using have the same uid/gid on each client system?
– Doug O'Neal
8 hours ago