Azure Storage Emulator error and does not start

后端 未结 22 1571
遥遥无期
遥遥无期 2020-12-22 22:28

This error is really driving me crazy. (Terminal running in administrator mode)

Initialization of azure storage emulator in sql server 2014:

C:\\Prog         


        
相关标签:
22条回答
  • 2020-12-22 23:21

    I got similar issue with visual studio while trying to run Azure Functions. AzureStorageEmulator.exe init worked for me

    0 讨论(0)
  • 2020-12-22 23:24

    In the file C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe.config you need to change port numbers:

    0 讨论(0)
  • 2020-12-22 23:25

    Check if you are running BitTorrent/uTorrent or similar software using port 10000.

    Check Steve Marx' blog post about the issue. http://blog.smarx.com/posts/windows-azure-storage-emulator-the-process-cannot-access-the-file-because-it-is-being-used-by-another-process

    In case that post disappears, the command to check if any other software is using that port is:

    C:\Users\smarx>netstat -p tcp -ano | findstr :10000
      TCP    127.0.0.1:10000        0.0.0.0:0              LISTENING       3672
    
    0 讨论(0)
  • 2020-12-22 23:25

    Windows Backup Agent was running on my VM box on port 10000 - moving to 10003 (via the .exe.config file worked)

    0 讨论(0)
提交回复
热议问题