安装 CIFS 只是挂起,没有详细输出

安装 CIFS 只是挂起,没有详细输出

为了调试一些不可变文件,我卸载了我们的共享驱动器,但它不允许重新挂载(即使重新启动后,并且该条目在 fstab 文件中已经存在多年)。我正在尝试手动执行此操作,并在下面列出我的流程:

要安装设备:

mount -t cifs //xxx.xxx/storage/Public_WWW /data/www/dynamic.xxx.xxx.ca/ --verbose -o credentials=/etc/samba/mha.cred

这只会挂起并且不提供任何错误输出。但是当我查看日志时:

当我查看 samba 日志时,收到以下错误消息:

  kerberos_kinit_password [email protected] failed: Preauthentication failed
[2018/07/11 14:06:46.452928,  0] libads/kerberos_util.c:101(ads_kinit_password)
  kerberos_kinit_password [email protected] failed: Preauthentication failed
[2018/07/11 14:07:54.499816,  0] libads/kerberos_util.c:101(ads_kinit_password)
  kerberos_kinit_password [email protected] failed: Preauthentication failed

我唯一能想到的就是密码或用户名发生了变化,而我不知何故错过了?今天花了很多时间在这件事上,希望有人能快速给我答案。

答案1

请查看您的 cifs 客户端和服务器系统之间是否存在时间差异。Kerberos 预身份验证使用时间戳。如果差异超过几秒钟,预身份验证就会失败。

相关内容