Samba是Linux和Windows文件共享的常规方案,当然也可以在Linux之间共享。
一、CentOS 6.4下安装Samba
yum -y install samba samba-client
安装完后检查版本
[root@peanuthost samba]# rpm -qa | grep samba
samba-common-3.6.9-151.el6_4.1.i686
samba-winbind-3.6.9-151.el6_4.1.i686
samba-client-3.6.9-151.el6_4.1.i686
samba-winbind-clients-3.6.9-151.el6_4.1.i686
samba-3.6.9-151.el6_4.1.i686
可以看到Samba的版本是3.6.9,其他有依赖关系的包也安装上了。
安装包说明(zz David Camp)
samba-common //主要提供samba服务器的设置文件与设置文件语法检验程序testparm
samba-client //客户端软件,主要提供linux主机作为客户端时,所需要的工具指令集
samba //服务器端软件,主要提供samba服务器的守护程序,共享文档,日志的轮替,开机默认选项
samba-swat //基于https协议的samba服务器web配置界面 (此处没有安装)
Samba服务器安装完毕,会生成配置文件目录/etc/samba和其它一些samba可执行命令工具,/etc/samba/smb.conf是samba的核心配置文件,/etc/init.d/smb是samba的启动/关闭文件。
二、开启smb服务,关闭SElinux和Iptables
直接使用service smb start 启动Samba服务。
# getenforce命令可以查看SElinux的状态 ,# setenforce 0可以暂时关闭SElinux,在/etc/selinux/config中把SELINUX= enforcing更改为SELINUX=disable可以永久关闭SELinux
# service iptables status可以查看Iptables的状态,# service iptables stop可以暂时关闭,# chkconfig iptables off可以永久关闭防火墙。
最后关闭后的状态应该是
SElinux:Disabled
Iptables:Firewall is not running
这两个服务在没配置时一定要是关闭状态,不然会访问不到!
查看samba的服务启动情况
# service smb status
设置开机自启动
# chkconfig --level 35 smb on //在3、5级别上自动运行samba服务
三、配置Samba
Samba的主配置文件为/etc/samba/smb.conf
主配置文件由两部分构成
Global Settings (55-245行)
该设置都是与Samba服务整体运行环境有关的选项,它的设置项目是针对所有共享资源的。
Share Definitions (246-尾行)
该设置针对的是共享目录个别的设置,只对当前的共享资源起作用。
遇到一个小问题,记录一下:
使用本地的client去访问时遇到LANMAN错误
[root@peanuthost share]# smbclient //localhost/public
WARNING: The security=share option is deprecated
Enter root's password:
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6_4.1]
Server not using user level security and no password supplied.
Server requested LANMAN password (share-level security) but 'client lanman auth = no' or 'client ntlmv2 auth = yes'
tree connect failed: NT_STATUS_ACCESS_DENIED
看提示应该是配置问题,搜索了下,查到一篇《LANMAN error in Samba》,安装给出的方法,在[Globle]中加入
12 client lanman auth = Yes
lanman auth = Yes
重启# service smb restart ,连接依然出错。看了看上面的提示,把client ntlmv2 auth = no也加入进去,重启,OK了:
[root@peanuthost share]# service smb restart
Shutting down SMB services: [ OK ]
Starting SMB services: [ OK ]
[root@peanuthost share]# smbclient //localhost/public
WARNING: The security=share option is deprecated
Enter root's password:
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 3.6.9-151.el6_4.1]
Server not using user level security and no password supplied.
smb: \>
CentOS Linux 6.4配置Samba简明指南:http://www.linuxdiyf.com/linux/12024.html
CentOS 6.4下安装配置Samba:http://www.linuxdiyf.com/linux/10770.html
CentOS 7安装配置Samba服务器:http://www.linuxdiyf.com/linux/10358.html
CentOS 6.4安装和配置Samba服务:http://www.linuxdiyf.com/linux/10223.html
CentOS安装配置Samba并实现与Windows共享:http://www.linuxdiyf.com/linux/4658.html