SAMBA案例
作者:互联网
SAMBA案例
1.配置多用户挂载
再服务器上通过SMB共享目录/devops,并满足以下要求
1)共享名为devops
2)共享目录devops只能被192.168.108.0/24网段中的客户端使用
3)共享目录devops必须可以被浏览 browseable =Yes
4)用户xixi必须能以读的方式访问此共享,访问密码是redhat
5)用户heihei必须能以读写的方式访问此共享,访问密码是redhat
此共享永久挂载在192.168.108.143上的/devops/目录,并使用用户xixi作为认证任何用户可以通过用户heihei来临时获取写的权限
二台虚拟机
server
①安装服务,关闭防火墙和SELinux
[root@server ~]# yum install samba -y
[root@server ~]# systemctl stop firewalld.service
[root@server ~]# setenforce 0
②配置文件/etc/samba/smb.conf 并重启服务
[root@server ~]#useradd xixi
[root@server ~]#useradd heihei
[root@server ~]#smbpasswd xixi
[root@server ~]#smbpasswd heihei
[root@server ~]#mkdir /devops
[root@server ~]#chmod o+w /devops | setfacl -m u:heihei:rwx /devops
[root@server ~]#systemctl restart smb nmb
clint
①关闭防火墙和SELinux 并安装cifs-utils
[root@server ~]#yum install samba -y
[root@server ~]#systemctl stop firewalld.service
[root@server ~]#setenforce 0
[root@server ~]#yum install cifs-utils -y
②修改/etc/fstab实现永久挂载
[root@server ~]#vim /etc/fstab
//192.168.108.143/devops /devops cifs defaults,multiuser,username=xixi,password=redhat,sec=ntlmssp 0 0
[root@server ~]#mount -a
③添加用户 (server和client的UID要一致)
[root@server ~]#useradd xixi
[root@server ~]#useradd heihei
④切换用户,使用cifscreads提权
xixi为读权限
heihei为读写权限
标签:SAMBA,xixi,devops,server,案例,heihei,共享,root 来源: https://blog.csdn.net/weixin_48325311/article/details/118861561