debian – 在NetApp上通过Samba查看时文件夹显示为文件

前端之家收集整理的这篇文章主要介绍了debian – 在NetApp上通过Samba查看时文件夹显示为文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们想要更改 NetApp文件服务器上的文件,并且每次更改这些文件时 – Debian机器都会将文件复制到另外两个共享.

由于我们使用lsync的复制方法,我们需要安装Samba共享(NetApp存储)并与Samba重新共享,我们正在从Debian机器的共享而不是NetApp进行所有更改.

问题是,有时在某些树级别,我们将文件夹视为文件而不是文件夹.

例如,树看起来像这样:

/
--fol1
 +--fol5
   +--fol6
--fol2
 +--fol3
   +--fol4

fol4 / fol6级别的所有文件夹,无论它们的父级是什么,看起来都像是一个文件.

注意:从Debian系统看起来都很好,只有在Debian机器上看到Samba共享的Windows机器上才会出现问题.

有些想法如何解决问题?

smb.conf文件

guest account = nobody
map to guest = bad user
disable netbios = yes
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=131072 SO_SNDBUF=242144
strict sync = no
acl check permissions = no
oplocks = False
level2oplocks = False
sync always = no

[reshare]
comment =reshare the netapp with debian to able to see the file change events
path = /netapp/
hosts allow =host1;host2;
writable = yes
guest ok = yes
force user = user1;
workgroup = SERVERS

server string = %h server
dns proxy = no
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
encrypt passwords = true
passdb backend = tdbsam
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
pam password change = yes

解决方法

如果您使用cifs进行netapp共享,请不要转发netapp共享,尝试使用samba dfs.

这是桑巴官方文档的一个例子.

root# cd /export/dfsroot
root# chown root /export/dfsroot
root# chmod 755 /export/dfsroot
root# ln -s msdfs:storageA\\shareA linka
root# ln -s msdfs:serverB\\share,serverC\\share linkb

Example 20.1. smb.conf with DFS Configured
[global]
netbios name = GANDALF
host msdfs = yes
[dfs]
path = /export/dfsroot
msdfs root = yes

通过这种方式,您的debian就像netapp共享的代理

原文链接:https://www.f2er.com/linux/399871.html

猜你在找的Linux相关文章