AzureStorageEmulator 5.1 无法启动

use*_*533 2 azure

在我的 Win10 更新之后,嵌入到 VS2019 (16.4.5) 中的 AzureStorageEmulator (5.10.0.0) 无法启动。我试图单独启动它,但同样的问题

AzureStorageEmulator.exe start -inprocess
Windows Azure Storage Emulator 5.10.0.0 command line tool
Service Status: Blob http://127.0.0.1:10000/ False
The network location cannot be reached. For information about network troubleshooting, see Windows Help
Error: Unable to start the storage emulator.
Run Code Online (Sandbox Code Playgroud)

除了初始化 AzureStorage 我还尝试过

AzureStorageEmulator.exe init
Windows Azure Storage Emulator 5.10.0.0 command line tool
Found SQL Instance (localdb)\MSSQLLocalDB.
Creating database AzureStorageEmulatorDb510 on SQL instance '(localdb)\MSSQLLocalDB'.
Granting database access to user EVN-TEAMVIEWER\simon.hunanyan.
Database access for user EVN-TEAMVIEWER\simon.hunanyan was granted.
Initialization successful. The storage emulator is now ready for use.
The storage emulator was successfully initialized and is ready to use.
Run Code Online (Sandbox Code Playgroud)

但结果是一样的:(

也许有人已经遇到了这个问题?任何想法 - 如何解决它?

use*_*533 8

看来,我找到了原因——本地机器的网络访问以某种方式关闭了:(我已经运行了命令

netsh http add iplisten 127.0.0.1
Run Code Online (Sandbox Code Playgroud)

令人惊讶的是 AzureStorageEmulator 启动了

AzureStorageEmulator.exe start -inprocess
Windows Azure Storage Emulator 5.10.0.0 command line tool
Service Status: Blob http://127.0.0.1:10000/ True
Service Status: Queue http://127.0.0.1:10001/ True
Service Status: Table http://127.0.0.1:10002/ True
Run Code Online (Sandbox Code Playgroud)