1

我试图了解我的问题可能在这里:

我正在使用基于 LAMP 构建的 Web 应用程序,该应用程序需要访问我已成功安装的 samba 共享

mount -t cifs ...

在应用程序中,无法像其他目录一样访问 samba 共享。但是,我可以通过终端访问它。这是 Apache 的权限问题吗?如果是这样,我将如何从远程计算机授予 apache 权限?

4

1 回答 1

0

你有没有尝试过

//ip/foleder/ /mnt/name cifs  username=user,password=passwd,nounix,noserverino,defaults,users,auto,gid=33,uid=33  0 0

将 gid 和 uid 更改为 apache 用户你可以像这样找到它:

 cat /etc/passwd | grep www-data
于 2014-10-03T09:27:55.717 回答