ubuntu 上的 cfdirectory 访问 Windows 上的 smbfs 出现奇怪的问题
奇怪的问题。我们使用cf web服务器来访问NAS。我们已经对这个问题进行了彻底的测试,但无法找出原因。
问题:我们在共享上执行 cfdirectory 到具有正确大小写的已知目录时得到空结果集。但是,我们可以以 cf 用户身份从 cf 服务器 ls 并查看所有内容,而不会出现权限错误。
我们尝试过的测试:
- 将测试文件设置为用户正在测试的路径是正确的 - 失败。
- 从 python 中列出目录 - 有效。
- 从有问题的 Web 服务器到有问题的目录执行 CFFILE 读取和写入 - 有效。
- 在本地目录上执行 CFDIRECTORY - 有效。
- 在 sudo 到 cfuser 的目录上执行 ls -la - 有效。
- 在目录上以 root 身份执行ls -la - 有效。
- 将 cf 用户权限更改为 root 并重试 CFDIRECTORY - 失败。
- 将挂载更改为以 root 用户身份挂载并重试 CFDIRECTORY - 失败。
- chown-ing 文件和父目录并重试 CFDIRECTORY - 失败。
Strange problem. We use a cf web server to access NAS. We have tested this issue to the nines and can't figure out the cause.
The problem: We get empty result sets doing a cfdirectory on the share to a known directory with the correct casing. However, we can ls from the cf server as the cf user and see everything without permission errors.
Tests we've tried:
- Making a test file to be user the path we are testing is correct - fail.
- Doing a directory listing from python - works.
- Doing a CFFILE read and write from the offending web server to the directory in question - works.
- Doing a CFDIRECTORY on a local directory - works.
- Doing ls -la on the directory sudo'd to cfuser - works.
- Doing ls -la as root on the directory - works.
- Changing cf user permissions to root and retrying CFDIRECTORY - fail.
- Changing mount to mount as root user and retrying CFDIRECTORY - fail.
- chown-ing the files and the parent dir and retrying CFDIRECTORY - fail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只能想到几件事。首先,请确保大小写正确,因为 Linux 中的 CF 中的文件系统读取区分大小写。
其次,我没有太多运气直接从CF读取SMB。过去对我有用的是使用 SMB Fuse 作为正常安装点来安装驱动器,并确保所有者/组与 CF 用户匹配。
I can only think of a couple of things. First, make sure your case is correct since filesystem reads are case-sensitive in CF in Linux.
Secondly, I have not had much luck reading directly to SMB from CF. What has worked for me in the past is mounting a drive using SMB Fuse as a normal mount point and making sure the owner/group matches the CF user.