Centos6.4系统文件服务之SAMBA

简介:

1.安装samba服务软件,创建共享的目录
[root@localhost ~]# yum install samba-client  samba-command samba
[root@localhost ~]# mkdir /home/samba
[root@localhost ~]# chmod o+w /home/samba/     --目录允许其它用户有写入权限


2.配置文件详细介绍

[root@localhost ~]# vim /etc/samba/smb.conf
workgroup = MYGROUP     --服务器工作组
server string = Samba Server Version %v    --服务的描述符
interfaces = lo eth0 192.168.12.2/24 192.168.13.2/24    --绑定哪块网卡
hosts allow = 127. 192.168.12. 192.168.13.     --允许哪个IP段访问
host deny=IP            --哪些IP不能访问samba服务器
log file = /var/log/samba/log.%m     --日志文件
max log size = 50      --最大日志文件的大小
security = user     --安全级别(user,server,domain)
passdb backend = tdbsam    --密码是否加密
comment = All Printers     --目录的描述符
path = /var/spool/samba    --共享目录路径
browseable = no     --是否可以浏览
guest ok = no       --匿名用户访问权限
writable = no       --是否可写
printable = yes     --打印输出
valid users = %S    --指定用户登陆
max connections = 10    --最大连接数
create mask = 0777      --创建文件的权限
admin users=用户        --这个用户对共享目录有管理员权限
max open files=n        --同一用户最大打开文件数
directory mode=0777     --目录的权限


3.案例:允许匿名用户访问,并有读写权限

[root@localhost ~]# vim /etc/samba/smb.conf
security = share    --修改这一行
[share]    --添加以下行
comment=samba is server
path=/home/samba
guest ok=yes

[root@localhost ~]#


4.重启服务和测试


[root@node1 ~]# /etc/init.d/smb restart
Shutting down SMB services:                                [  OK  ]
Starting SMB services:                                     [  OK  ]
[root@node1 ~]# /etc/init.d/nmb restart
Shutting down NMB services:                                [  OK  ]
Starting NMB services:                                     [  OK  ]
[root@node1 ~]# iptables -I INPUT -p udp --dport 137 -j ACCEPT    --包过滤打开
[root@node1 ~]# iptables -I INPUT -p udp --dport 138 -j ACCEPT
[root@node1 ~]# iptables -I INPUT -p tcp --dport 139 -j ACCEPT
[root@node1 ~]# iptables -I INPUT -p tcp --dport 445 -j ACCEPT
[root@node1 ~]# setenforce  0        --关闭安全上下文
[root@node1 ~]# smbclient  -L localhost     --查看samba的共享目录
WARNING: The security=share option is deprecated
Enter root's password:
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Sharename       Type      Comment
---------       ----      -------
share           Disk      samba is server
IPC$            IPC       IPC Service (Samba Server Version 3.6.9-151.el6)
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Server               Comment
---------            -------
NODE1                Samba Server Version 3.6.9-151.el6
Workgroup            Master
---------            -------
MYGROUP
[root@node1 ~]#


 在windosw中登陆

wKiom1LTfcfAvn5iAAGFboVLCQs000.jpg

在Linux系统中登陆

[root@centos ~]# smbclient  -L 2.2.2.27
Password:
Anonymous login successful
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Sharename       Type      Comment
---------       ----      -------
share           Disk      samba is server
IPC$            IPC       IPC Service (Samba Server Version 3.6.9-151.el6)
Anonymous login successful
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Server               Comment
---------            -------
NODE1                Samba Server Version 3.6.9-151.el6
Workgroup            Master
---------            -------
MSHOME               C4J3I3H6LB28VW4
MYGROUP              NODE1
WORKGROUP            PPM-SERVER
[root@centos ~]# mount -t cifs  //2.2.2.27/share /mnt/
[root@centos ~]# df -TH
Filesystem    Type     Size   Used  Avail Use% Mounted on
/dev/sda2     ext3      11G   3.5G   6.2G  37% /
/dev/sda1     ext3     510M    17M   467M   4% /boot
tmpfs        tmpfs     264M      0   264M   0% /dev/shm
//2.2.2.27/share
cifs     6.9G   6.5G    39M 100% /mnt


5.案例:只允许本地用户访问,并有读写权限

[root@node1 ~]# useradd tong
[root@node1 ~]# passwd tong
Changing password for user tong.
New password:
BAD PASSWORD: it is based on a dictionary word
BAD PASSWORD: is too simple
Retype new password:
passwd: all authentication tokens updated successfully.
[root@node1 ~]# smbpasswd -a tong   --将本地用户加入到samba用户
New SMB password:
Retype new SMB password:
Added user tong.
[root@node1 ~]# vim /etc/samba/smb.conf
security = user     --修改这一行
[share]      --添加以下行
comment=samba is server
path=/home/samba
browseable = yes
writable=yes
valid user=tong

[root@node1 ~]#


6.重启服务和测试

[root@node1 ~]# /etc/init.d/smb restart
Shutting down SMB services:                                [  OK  ]
Starting SMB services:                                     [  OK  ]
[root@node1 ~]# /etc/init.d/nmb restart
Shutting down NMB services:                                [  OK  ]
Starting NMB services:                                     [  OK  ]
[root@node1 ~]#


  在windows中登陆

wKiom1LThEqxJL9VAAD6cWZG9uc120.jpg

wKioL1LThHjQ2F2_AAGB8hk0Z4I517.jpg

在Linux系统中登陆

[root@centos ~]# smbclient  -L 2.2.2.27 -U tong     --tong是用户
Password:
Anonymous login successful
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Sharename       Type      Comment
---------       ----      -------
share           Disk      samba is server
IPC$            IPC       IPC Service (Samba Server Version 3.6.9-151.el6)
Anonymous login successful
Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6]
Server               Comment
---------            -------
NODE1                Samba Server Version 3.6.9-151.el6
Workgroup            Master
---------            -------
MSHOME               C4J3I3H6LB28VW4
MYGROUP              NODE1
WORKGROUP            PPM-SERVER
[root@centos ~]# mount -t cifs  //2.2.2.27/share /mnt/ -o username=tong%system
[root@centos ~]# df -TH
Filesystem    Type     Size   Used  Avail Use% Mounted on
/dev/sda2     ext3      11G   3.5G   6.2G  37% /
/dev/sda1     ext3     510M    17M   467M   4% /boot
tmpfs        tmpfs     264M      0   264M   0% /dev/shm
//2.2.2.27/share
cifs     6.9G   6.5G    39M 100% /mnt
[root@centos ~]#


7.samba服务的自动挂载

[root@centos ~]# yum install autofs
[root@centos ~]# vim /etc/auto.master
/mnt/samba   /etc/auto1.smb   --timeout=60        --添加以下行
[root@centos ~]# cp -a /etc/auto.misc  /etc/auto1.smb
[root@centos ~]# vim /etc/auto1.smb
samba1    -fstype=cifs,username=tong%system    ://2.2.2.27/share     --添加这行(tong是用户名,system是密码)
[root@centos ~]# /etc/init.d/autofs restart
Stopping automount:                                        [  OK  ]
Starting automount:                                        [  OK  ]
[root@centos ~]# cd /mnt/samba/
[root@centos samba]# ll
total 0
[root@centos samba]# cd samba1        --进入目录挂载成功
[root@centos samba1]# ll
total 16
-rwxr--r-- 1 nobody nobody     0 Jan 13 13:45 12.txt
-rwxr--r-- 1 nobody nobody 15872 Jan 13 13:50 新建 Microsoft Excel 工作表.xls
[root@centos samba1]#


8.开机挂载

[root@centos ~]# vim /etc/fstab
//2.2.2.27/share   /mnt/samba/samba1    cifs   defaults,credentials=/etc/1.txt 0 0           --添加这一行
[root@centos ~]# vim /etc/1.txt
username=tong      --写入用户名和密码
password=system
[root@centos ~]# chmod 600 /etc/1.txt
[root@centos ~]# mount -a
[root@centos ~]# df -TH
Filesystem    Type     Size   Used  Avail Use% Mounted on
/dev/sda2     ext3      11G   3.5G   6.2G  37% /
/dev/sda1     ext3     510M    17M   467M   4% /boot
tmpfs        tmpfs     264M      0   264M   0% /dev/shm
//2.2.2.27/share
cifs     6.9G   6.5G    39M 100% /mnt/samba/samba1
[root@centos ~]#

 










本文转自 z597011036 51CTO博客,原文链接:http://blog.51cto.com/tongcheng/1351236,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
Java Linux Shell
linux自动部署jar包,注册系统服务(基于Centos7)
linux自动部署jar包,注册系统服务(基于Centos7)
91 0
|
3月前
|
安全 Linux 网络安全
百度搜索:蓝易云【centos7系统添加用户、密码,以及修改端口教程】
请牢记,对系统进行任何更改都需要谨慎行事。在执行这些操作之前,最好备份重要的数据和配置文件,并确保您具有足够的权限和知识来进行这些更改。如果在操作过程中遇到任何问题,请务必小心并及时修复,以免影响系统的稳定性和安全性。
69 2
|
3月前
|
缓存 Linux 网络安全
系统-安装centos6
系统-安装centos6
146 0
|
3月前
|
监控 安全 Linux
CentOS7下部署ARL资产侦察灯塔系统
CentOS7下部署ARL资产侦察灯塔系统
172 3
|
1月前
|
关系型数据库 MySQL 数据库
虚拟机Linux-Centos系统网络配置常用命令+Docker 的常用命令
虚拟机Linux-Centos系统网络配置常用命令+Docker 的常用命令
45 0
|
1月前
|
关系型数据库 MySQL Linux
【VMware安装+centos 7Linux系统+MySQL安装】——在Linux系统中安装MySQL步骤,以及遇见的各种问题(如:vm两个虚拟网卡消失、vm网络适配器有感叹号等等)
【VMware安装+centos 7Linux系统+MySQL安装】——在Linux系统中安装MySQL步骤,以及遇见的各种问题(如:vm两个虚拟网卡消失、vm网络适配器有感叹号等等)
185 0
|
2月前
|
关系型数据库 Linux Shell
Centos系统上安装PostgreSQL和常用PostgreSQL功能
Centos系统上安装PostgreSQL和常用PostgreSQL功能
|
3月前
|
监控 Linux
CentOS7中使用一键脚本部署Librenms网络监控系统
CentOS7中使用一键脚本部署Librenms网络监控系统
104 1
|
3月前
|
安全 Linux Anolis
CentOS to 龙蜥衍生版 KeyarchOS 系统迁移体验 | 开发者说
CSDN 知名博主使用龙蜥衍生版 KeyarchOS 迁移使用体验,欢迎阅读。
|
3月前
|
负载均衡 算法 Linux
百度搜索:蓝易云【Centos7系统Haproxy安装配置教程】
现在,HAProxy已经成功安装和配置在您的CentOS 7系统上。它将监听您配置的端口,并根据负载均衡策略将请求转发到后端服务器。您可以根据需要自定义更多的配置,如SSL终止、ACL和更复杂的负载均衡算法。请确保HAProxy的配置符合您的需求,并在进行更改之前备份配置文件,以防止意外的错误。
43 2

热门文章

最新文章