【发布时间】:2015-12-14 10:37:34
【问题描述】:
我已成功将 Azure 文件存储挂载到同一订阅和位置内的 VM。现在我将这个虚拟机克隆到一个新的订阅和另一个位置——所以我的新机器除了订阅和位置完全一样。当我运行相同的命令来挂载相同的文件存储时:
sudo mount -t cifs //MYACCOUNT.file.core.windows.net/MY/FOLDER /MY/LOCAL/FOLDER/ -o vers=3.0,username=USER,password=ACCESSKEY,file_mode=0777,dir_mode=0777
然后我得到
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
我认为这与不同的订阅和位置有关,因为在门户中,当我单击文件存储中的connect 时,会说:
To connect to this file share, run this command from any Windows virtual machine on the same subscription and location:
那么有没有可能从另一个订阅和位置连接到我的文件存储?
【问题讨论】:
-
您在 VM 上使用的 windows server 版本是什么?
-
这是一个 Ubuntu 14.04 虚拟机。我刚刚从门户发布了这句话,因为我认为这是对某种限制的暗示——但我找不到关于文件存储连接的“官方”限制。
标签: azure mount azure-storage-files