gpt4 book ai didi

azure - 我可以从本地工作站安装 Azure 文件存储吗?

转载 作者:行者123 更新时间:2023-12-01 08:53:27 25 4
gpt4 key购买 nike

我想将 Azure 文件存储安装到我的本地工作站。目前文档似乎还不清楚。

文档中的注释

Some Internet service providers may block port 445

似乎证明了这一点,但是net use无法在本地工作(Azure VM 工作正常)。

我收到此错误:

“The network name cannot be found”

文档:https://github.com/Azure/azure-content/blob/master/articles/storage/storage-dotnet-how-to-use-files.md#mount-the-file-share-from-an-on-premises-client-running-windows

编辑:

  • 本地工作站运行 Windows 10 专业版
  • 命令是 net use <drive-letter>: \\<storage-account-name>.file.core.windows.net\<share-name> /u:<storage-account-name> <storage-account-key>它可以在同一区域和订阅中的 Azure 实例上运行。

编辑2:

它有效,但只有一次!重新启动后我遇到了同样的问题。针对 SMB 端口的 TCP Ping 仅在 azure 虚拟机上成功。

本地工作站

Test-NetConnection -ComputerName SHARENAME.file.core.windows.net -Port 445
TcpTestSucceeded : False

Azure 虚拟机

Test-NetConnection -ComputerName SHARENAME.file.core.windows.net -Port 445
TcpTestSucceeded : True

看来我的 ISP 阻止了端口 445。

最佳答案

显然,您的里程可能会有所不同,但这对我来说效果很好

我使用以下 Powershell 脚本

$pass = "password" | ConvertTo-SecureString -AsPlainText -Force
$credentials = new-object -typename System.Management.Automation.PSCredential `
-argumentlist "topbanananas",$pass

New-PSDrive -Name p -PSProvider FileSystem `
-Root \\topbanananas.file.core.windows.net\fruity `
-Credential $credentials -Persist

关于azure - 我可以从本地工作站安装 Azure 文件存储吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34651089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com