FTP 用户权限
我有一台 CentOS 服务器,我想知道是否可以向 ftp 用户授予“超越”Apache 用户的权限?因为如果我用 Apache 创建一个文件夹(具有 755 权限),我无法将其从 ftp 中删除。
I have a CentOS server and I want to know if it is possible to give to the ftp user permissions "over" the Apache user? Because if I create a folder with Apache (with 755 rights), I can't remove it from ftp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 FTP 用户添加到与您的 Apache 用户相同的组中即可。
例如,如果您的 Apache 用户位于
apache
组(CentOS 中的默认值)中,请运行:sudo useradd -G apache ftp_用户名
Just add FTP user to the same group as your Apache user.
For example, if your Apache user in the
apache
group (default in CentOS) run:sudo useradd -G apache ftp_username