AzureFeeds - All your Azure feeds in one place.

Sponsors

Saturday, November 15, 2008

Azure Tip: How to Get Cloud Storage Working Locally if You're Not Running SQL Server Express

by David Pallmann via Fire & Ice: David Pallmann's Web & Cloud Blog on 11/15/2008 2:31:00 PM

If you're having trouble getting cloud storage to run locally on your box, this tip from Neudesic rock star Chris Rolon may help. It's especially likely this is your problem if the version of SQL Server you run isn't SQL Server Express.

If you're not running SQL Server Express, you'll need to change two values in the DevelopmentStorage.exe.config file which resides in C:\Program Files\Windows Azure SDK\v1.0\bin to have the correct SQL Server instance name (shown in red below).

  • The first is the DevelopmentStorageDbConnectionString value in the connectionStrings section.
  • The second is the dbServer value in the developmentStorageConfig section's third Service entry (the one named Table).

<connectionStrings>
<add name="DevelopmentStorageDbConnectionString" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=DevelopmentStorageDb;Integrated Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>

<appSettings>
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>

<developmentStorageConfig>
<services>
<service name="Blob" url="http://127.0.0.1:10000/"/&gt;
<service name="Queue" url="http://127.0.0.1:10001/"/&gt;
<service name="Table" url="http://127.0.0.1:10002/" dbServer="localhost\SQLExpress"/>
</services>

Note that the first entry uses "." to indicate local machine while the second uses "localhost."
email it!bookmark it!digg it!

Original Post: Azure Tip: How to Get Cloud Storage Working Locally if You're Not Running SQL Server Express

Legal Note

The content of the postings is owned by the respective author. AzureFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on AzureFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.

Advertise with us