Azure Emulator Port conflict, app tries to connect to wrong port

前端 未结 1 703
轻奢々
轻奢々 2020-12-22 03:56

When starting the Azure Storage Emulator, it fails because of a port conflict with some dell drivers/software.

I solved this by changing urls in the StorageEmu

相关标签:
1条回答
  • 2020-12-22 04:27

    You can try by specifying endpoints in your connection string:

    DefaultEndpointsProtocol=http;
    AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;
    BlobEndpoint=http://127.0.0.1:10100/devstoreaccount1;
    QueueEndpoint=http://127.0.0.1:10101/devstoreaccount1;
    TableEndpoint=http://127.0.0.1:10102/devstoreaccount1;
    
    0 讨论(0)
提交回复
热议问题