MySQL In App won't turn on

Jerry Rhule 0 Reputation points
2025-01-07T03:50:06.3133333+00:00

When I try to turn it on I get this error "Failed to save your settings for MySQL In App"

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,187 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SnehaAgrawal-MSFT 22,156 Reputation points
    2025-01-16T07:37:53.0566667+00:00

    @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
    
    
    

    Reference- https://learn.microsoft.com/en-us/azure/app-service/configure-common?tabs=ps#configure-connection-strings

    Please let us know if issue remains.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.