技术宅

当前位置:首页 > 网站教程 > 其他教程

其他教程

FTP提示 553 Can't open that file: Permission denied 错误解决方法

时间:10-02 作者:
方式一:
TP上传文件,提示553 Can't open that file: Permission denied原因:
目录的所属组,所属用户属于root, 导致FTP无法上传, 修改组和所属用户为www即可chown -fR w
方式一:
 

TP上传文件,提示553 Can't open that file: Permission denied

原因:


目录的所属组,所属用户属于root, 导致FTP无法上传, 修改组和所属用户为www即可

chown -fR www ./*
chgrp -fR www ./*


方式二:
可以用$ll查看文件夹所有者

然后在执行权限命令

for user:
chown -fR <new_username> /home/abc

For grp:
chgrp -fR <new_grp> /home/abc



列如


chown -R www.www /data/wwwroot/www.landui.com/

find /data/wwwroot/www.landui.com -type d -exec chmod 755 {} \;

find /data/wwwroot/www.landui.com -type f -exec chmod 644 {} \;