Pawna
Pawna

Reputation: 258

Accessing Azure MySQL service

I'm having problem trying to access the MySQL server (I'd like to replace a table with another) provided as part of the Windows Azure service. I have downloaded the publishsettings XML file, and the closest thing that I can find is 'Data Source=us-cdbr-azure-east-a.cloudapp.net;'. However, it's not accessible from the web browser, so I'm not sure what to do next.

Upvotes: 7

Views: 8301

Answers (1)

Jim O'Neil
Jim O'Neil

Reputation: 23754

You can get the full connection string from the dashboard of your Azure Web Site

Dashboard of your Windows Azure Web Site

enter image description here

Then you can use those credentials in a MySQL administration program, such as MySQL Workbench.

Upvotes: 16

Related Questions