1.目录权限
[root@yuyuda] # find -type d -exec chmod 750 {} \;
2.文件权限
[root@yuyuda] # find -not -type d -exec chmod 640 {} \;
3.有自动生成文件的权限
[root@yuyuda] # find -name "Runtime" -type d -exec chmod 770 {} \;
PS:上边大括号与反斜线间必有一个空格
4.看所属用户与用户组是否为web服务器的用户与用户组
[root@yuyuda] # ps -ef | grep nginx
[root@yuyuda] # chown -R www:www 项目目录