linux – 如何为多个用户提供写权限?

前端之家收集整理的这篇文章主要介绍了linux – 如何为多个用户提供写权限?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Web服务器,我正在使用FTP客户端上传文件.因此,文件的所有者和组是从上载期间使用的用户获取的.

现在我必须通过Web服务器(apache / apache)使该文件可写.

一种方法是将所有者和上传文件的组更改为apache / apache,但这样我就无法使用FTP帐户修改文件.另一种方法是赋予文件777权限.

这两种方法看起来都不是很专业,而且有点风险.还有其他选择吗?在Windows中,我可以将另一个用户添加到该文件中.可以用Linux做类似的事吗?

解决方法

您可以更改文件组:
groupadd webusers
usermod -aG webusers the_user_name
chgrp -R webusers the_directory
chmod g+s the_directory

如果这是基于RedHat的发行版,您可以使用setfacl在没有组的情况下执行此操作,并将其设置为默认情况下:

setfacl -R -m user:the_username:rwx directory_name
setfacl -d -R -m user:the_username:rwx directory_name
原文链接:https://www.f2er.com/linux/397935.html

猜你在找的Linux相关文章