当前位置:  开发笔记 > 编程语言 > 正文

使用Laravel Artisan和文件权限

如何解决《使用LaravelArtisan和文件权限》经验,为你挑选了1个好方法。

我是Laravel的新手,我发现这个框架非常棒.

工匠也很棒,但使用它有一点问题.

假设我用这样的Artisan创建了一个新的Controller

php artisan make:controller Test

app/Http/Controllers中将有一个名为Test的新文件,该文件的权限为root:root

当我想用我的编辑器通过ftp编辑这个文件时我不能,因为我没有以root用户身份登录.

有没有办法告诉Artisan创建具有www-data组的文件(例如,不执行chown命令)?



1> Kaloyan Doic..:

由于您具有root shell访问权限,因此以下命令将使用www-data用户执行另一个命令 -

sudo -u www-data php artisan make:controller Test

替换www-data为您的Web服务器运行的用户名,或者您登录FTP服务的用户名.

执行此操作时,控制器将归www-data您所有,这就是您想要的.

注意:不要永远从互联网上运行的命令复制粘贴没有确切知道他们在做什么,尤其是在一个root shell.在这种情况下,-u参数告知sudo以特定用户而不是用户身份执行命令root.从联机帮助页:

-u user, --user=user
             Run the command as a user other than the default target user (usually root ). The user may be
             either a user name or a numeric user ID (UID) prefixed with the ‘#’ character (e.g.  #0 for UID
             0).  When running commands as a UID, many shells require that the ‘#’ be escaped with a backslash
             (‘\’).  Some security policies may restrict UIDs to those listed in the password database.  The
             sudoers policy allows UIDs that are not in the password database as long as the targetpw option
             is not set.  Other security policies may not support this.

推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有