Steven
Steven

Reputation: 4963

How do I setup the Azure Storage Emulator to listen on all interfaces?

Is it possible to get the storage emulator to listen on every interface rather than the 127.0.0.1?

Upvotes: 4

Views: 1380

Answers (3)

Dave New
Dave New

Reputation: 40012

You can get this to work by editing the relevant config files.

Refer to the following blog post:

Upvotes: 1

Brian H. Prince
Brian H. Prince

Reputation: 71

Not really. It is meant as a local simulator for local development. It is only meant for local use, and is not written or tested to be a network resource.

Upvotes: 1

astaykov
astaykov

Reputation: 30903

First off,

127.0.0.1 is IP Address not port! Than take a look at

%PROGRAMFILES%\Microsoft SDKs\Windows Azure\Emulator\devstore\DSServiceLDB.exe.config

it has configuration settings for all storage services. However, if you change the address of Storage Emulator, than you will no longer be able to use "usedevelopmentstorage=true" as your storage connection string. My personal advise is to not change the IP Address of storage emultator! Depending on the exact need for different IP Address, I would rather suggest testing/developing against real storage service.

Upvotes: 2

Related Questions