samba服务(本地)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了samba服务(本地)相关的知识,希望对你有一定的参考价值。

1.使用yum命令安装samba服务器

yum -y install samba-*

2.映射共享目录,设置密码

useradd -M xin
smbpasswd -a xin

3.映射xin用户为share用户,那么就要在/etc/samba/smbusers文件中添加如下内容

echo “xin = share” > /etc/samba/smbusers

4.在全局配置中添加内容,使映射生效。

username map = /etc/samba/smbusers

5.创建/opt/xin目录

mkdir /opt/xin
chown -R xin.xin /opt/xin

6.配置共享,vim /etc/samba/smb.conf

[xin]
path = /opt/xin (要共享的目录)
browseable = yes (可浏览)
public = yes (允许匿名用户访问)
guest ok = yes (所有人可访问)
writable = yes (共享目录可写)
write list = share (允许可写的用户)

7.服务端启动smb,关闭防火墙。 设置setenforce 0

systemctl start smb nmb
systemctl stop firewalld
setenforce 0 (无论配置文件是否已关闭,必须输入此命令。否则客户端不能创建文件)

8.客户端安装samba-client,关闭防火墙。 设置setenforce 0

yun -y install samba-client
systemctl stop firewalld
setenforce 0

9.在客户机查看samba服务器有哪些共享资源

smbclient -L 192.168.61.131 -U share

10.挂载。

mount -t cifs //192.168.61.131/xin /opt/tao/ -o username=share,password=123
//192.168.61.131/xin /lpl cifs defaults,username=xin,password=123 0 0 (永久挂载)

11.在客户机上进入共享目录创建新文件,在服务端查看。

  mkdir  666

以上是关于samba服务(本地)的主要内容,如果未能解决你的问题,请参考以下文章

centos7 搭建samba服务

samba服务本地用户访问共享文件夹

windows 映射samba Linux服务器,输入正确的账号密码却提示“ 指定的网络密码不正确”

linux搭建samba服务器

Samba服务和FTP服务

Samba服务