FreeABC
记忆重叠

centos 6.X samba 服务 mount error(112): Host is down问题处理

今天同事钢哥centos 6.4 挂载 win10系统的共享文件 挂载不上

随手丢给他一段代码

mount -t cifs -o username=administrator,gid="501",uid="501",dir_mode=0777 //10.1.1.66/d$/AniuPHP/phpStudy/WWW /home/wwwroot

3秒后,钢哥回到,不行啊

我过去一看

mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
You have new mail in /var/spool/mail/root

 

狗哥搜了一波,问题出在win10 的samba 服务版本高于1.0,添加vers=2.0可以解决

于是有了以下代码

mount -t cifs -o vers=2.0,username=administrator,gid="501",uid="501",dir_mode=0777 //10.1.1.66/d$/AniuPHP/phpStudy/WWW /home/wwwroot

依然报

 

没办法,钢哥折腾一天后妥协了,重新装了一个centos 7

 

使用以上命令又可以正常mount了

 

详细狗哥了一番

找到一篇

https://serverfault.com/questions/830817/mount-cifs-mount-error112-host-is-down

我在这里找到了这个链接其中说rhel和Centos 6不支持SMB 2和3.它只能挂载SMB1。从Centos和rhel 7,这是支持。

确实是因为 centos6 不支持。尴尬

 

未经允许不得转载:Free-Abc智能 » centos 6.X samba 服务 mount error(112): Host is down问题处理
分享到: 更多 (0)