二哥Logo

OneinStack安装程序时,提示文件没有权限的处理方法

stx  ·  

网站根目录权限遵循:
文件644 文件夹755 权限用户和用户组www
如出现文件权限问题时,请执行下面3条命令:

chown -R www.www /data/wwwroot/
find /data/wwwroot/ -type d -exec chmod 755 {} \;
find /data/wwwroot/ -type f -exec chmod 644 {} \;

下面是lnmp

chown -R www.www /home/wwwroot/
find /home/wwwroot/ -type d -exec chmod 755 {} ;
find /home/wwwroot/ -type f -exec chmod 644 {} ;

当执行chown或chmod对网站目录属主属组或权限进行操作时可能会提示chown: changing ownership of `/home/wwwroot/default/.user.ini’: Operation not permitted,不需要理会,如果有强迫症可以参考前面先进行chattr -i的操作。