科学Linux 6.3具有tdbsam后端的Samba独立服务器
本教程介绍了在Scientific Linux 6.3上安装Samba文件服务器,以及如何配置Samba文件服务器以通过SMB协议共享文件以及如何添加用户。 Samba被配置为独立服务器,而不是域控制器。 在最终的设置中,每个用户都可以通过SMB协议访问自己的主目录,所有用户都有一个具有读/写访问权限的共享目录。
我不会保证这将为您工作!
1初步说明
我正在使用科学Linux 6.3系统,其中hostname server1.example.com
和IP地址为192.168.0.100
。
确保SELinux被禁用 - 编辑/ etc / selinux / config
并设置SELINUX = disabled
:
vi /etc/selinux/config
# This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of these two values: # targeted - Targeted processes are protected, # mls - Multi Level Security protection. SELINUXTYPE=targeted |
如果你必须修改/ etc / selinux / config
,你必须重新启动系统:
reboot
2安装Samba
在shell上连接到您的服务器并安装Samba软件包:
yum install cups-libs samba samba-common
编辑smb.conf
文件:
vi /etc/samba/smb.conf
确保您在[全局]
部分中看到以下行:
[...] # Backend to store user information in. New installations should # use either tdbsam or ldapsam. smbpasswd is available for backwards # compatibility. tdbsam requires no further configuration. security = user passdb backend = tdbsam [...] |
这使得Linux系统用户能够登录到Samba服务器。
然后创建Samba的系统启动链接并启动它:
chkconfig --levels 235 smb on
/etc/init.d/smb start
3添加Samba共享
现在我将添加所有用户都可以访问的共享。
创建用于共享文件的目录,并将组更改为用户
组:
mkdir -p /home/shares/allusers
chown -R root:users /home/shares/allusers/
chmod -R ug+rwx,o+rx-w /home/shares/allusers/
在/etc/samba/smb.conf
文件末尾
添加以下行:
vi /etc/samba/smb.conf
[...] [allusers] comment = All Users path = /home/shares/allusers valid users = @users force group = users create mask = 0660 directory mask = 0771 writable = yes |
如果您希望所有用户能够通过Samba读取和写入主目录,请将以下行添加到/etc/samba/smb.conf
(请确保您注释掉或删除smb
中的其他[homes]
部分。 conf
文件!):
[...] [homes] comment = Home Directories browseable = no valid users = %S writable = yes create mask = 0700 directory mask = 0700 |
现在我们重新启动Samba:
/etc/init.d/smb restart
4添加和管理用户
在这个例子中,我将添加一个名为tom
的用户。 您可以按照相同的方式添加任意数量的用户,只需用命令中所需的用户名替换用户名tom
。
useradd tom -m -G users
在Linux系统用户数据库中设置tom
的密码。 如果用户tom
不能登录到Linux系统,请跳过此步骤。
passwd tom
- >输入新用户的密码。
现在将用户添加到Samba用户数据库中:
smbpasswd -a tom
- >输入新用户的密码。
现在您应该能够使用文件浏览器(地址为\\ 192.168.0.100
或\\ 192.168.0.100 \ tom
for tom
的主目录)使用用户名tom
和所选密码和存储文件从Windows工作站登录在Linux服务器上,在tom
的主目录或公共共享目录中。
5链接
- Samba: http : //www.samba.org/
- 科学Linux: https : //www.scientificlinux.org/