系统相关
首页 > 系统相关> > linux权限组

linux权限组

作者:互联网

我正在尝试设置我的网络服务器,以便一个组可以访问这些文件. Apache和需要编辑文件的每个用户都将属于该组.因此,我将所有文件设置为具有psacln组.我已经将psacln添加到我的组中.但是它仍然不允许我查看文件:

[tom@166 httpdocs]$whoami
tom
[tom@166 httpdocs]$groups tom
tom : tom adm wheel apache psacln andy
[tom@166 httpdocs]$ls -al
ls: .: Permission denied
[tom@166 httpdocs]$sudo ls -al
total 92
d---rwx--- 14 andy   psacln 4096 Jul 22 17:51 .
drwxrwxr-x 16 apache apache 4096 Jul 21 09:29 ..
d---rwx---  4 andy   psacln 4096 Jul 21 09:26 backend
d---rwx---  3 andy   psacln 4096 Jul 22 15:21 core
d---rwx---  5 andy   psacln 4096 Jul 21 09:26 css
...

解决方法:

可能需要注意的一件事是,当您更改用户的组成员身份时,您将必须注销并重新登录(即,组成员身份将在您登录后生效,并且通常不会进行其他更改).

标签:usergroups,permissions,linux
来源: https://codeday.me/bug/20191210/2102554.html