我成功地将 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:
那么是否有可能从另一个订阅和位置连接到我的文件存储?