Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以用户'codex'身份运行的php脚本,我试图让它创建一个新目录,用作/home/git/repositories/内部的git repo
我将 codex 用户添加到 git 组,但我一定错过了一些权限或其他东西,因为当我 sudo 进入 codex 并转到 /home/git/ 目录并运行 mkdir 时,我收到权限被拒绝错误。当然,我在 php 中运行 mkdir 时也会遇到同样的错误。
我在 CentOS 5.9 上运行
任何帮助,将不胜感激。
——文斯
确保该组具有写访问权限(以及我们在其中的读取和列出访问权限):
chmod g+rwx /home/git
您可能还想确保目录的组是git组:
git
chgrp git /home/git