我有一个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