samba不允许强制用户

时间:2013-09-23 09:38:49

标签: macos debian samba

我在Debian Wheezy上使用Samba 3.6.6。

我希望能够使用我的macbook在我的开发服务器上更改www文件。 所以我设置了samba并为/ var / www目录做了一个共享。

我添加了用户bart& root到samba连接。然后使用命令K然后使用smb://192.168.2.100(我的samba服务器)连接。

由于apache使用www-data作为www文件的用户和组,我在samba中使用force user和force group来防止权限错误。

然而,它确实强制组www-data,但不强制用户。我创建的每个文件都由root-www。data。

组成

为了寻找错误,我将日志保存在/ var / log / samba中,并且只在重新启动samba服务时在log.smbd中发现错误。请参阅此处的日志:

smbd version 3.6.6 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2011
[2013/09/23 11:14:22.601031,  0] printing/print_cups.c:110(cups_connect)
  Unable to connect to CUPS server localhost:631 - Connection refused
[2013/09/23 11:14:22.602215,  0] printing/print_cups.c:487(cups_async_callback)
  failed to retrieve printer list: NT_STATUS_UNSUCCESSFUL

这是我的smb.conf:

[global]
    server string = %h server
    map to guest = Bad User
    obey pam restrictions = Yes
    pam password change = Yes
    passwd program = /usr/bin/passwd %u
    passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
    unix password sync = Yes
    syslog = 0
    log file = /var/log/samba/log.%m
    max log size = 1000
    dns proxy = No
    usershare allow guests = Yes
    panic action = /usr/share/samba/panic-action %d
    idmap config * : backend = tdb

[homes]
    comment = Home Directories
    valid users = %S
    create mask = 0700
    directory mask = 0700
    browseable = No

[printers]
    comment = All Printers
    path = /var/spool/samba
    create mask = 0700
    printable = Yes
    print ok = Yes
    browseable = No

[print$]
    comment = Printer Drivers
    path = /var/lib/samba/printers

[www]
    comment = www
    path = /var/www/
    valid users = bart, root
    admin users = bart, root
    write list = bart, root
    force user = www-data
    force group = www-data
    read only = No

我甚至尝试将www-data添加到有效用户以及管理员用户和写入列表中。这当然没有任何效果。

你能救我吗?提前谢谢!

1 个答案:

答案 0 :(得分:1)

在其他人的帮助下说:

“我认为在这种情况下,选项管理员用户会覆盖选项强制用户。”

我删除了管理员用户,问题解决了!