Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,187 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When I try to turn it on I get this error "Failed to save your settings for MySQL In App"
@Jerry Rhule Thanks for reaching here! If I am understanding you are trying to save connection string- in case you are facing issue from "Azure Portal" problem, you can set your application settings and connection strings using Azure PowerShell using- Set-AzWebApp:
$PropertiesObject = @{
"<string-name1>" = @{
value="<connection-string1>";
type="<type>"};
"<string-name2>" = @{
value="<connection-string2>";
type="<type>"}
}
Set-AzWebApp -ResourceGroupName <group-name> -Name <app-name> -ConnectionStrings $PropertiesObject
Please let us know if issue remains.