mysql flexible server deployment (via portal) either hangs or fails

alex 106 Reputation points
2021-02-17T19:24:50.707+00:00

The first attempt spent 17 hours in the "Accepted" state before being cancelled.

The third attempt failed with this:

{
  "code": "DeploymentFailed",
  "message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.",
  "details": [
    {
      "code": "InternalServerError",
      "message": "An unexpected error occured while processing the request. Tracking ID: '130fa5e9-f4c2-4e34-8f16-7e3b42291d81'"
    }
  ]
}
Azure Database for MySQL
Azure Database for MySQL
An Azure managed MySQL database service for app development and deployment.
824 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Anurag Sharma 17,606 Reputation points
    2021-02-18T06:47:35.847+00:00

    Hi @alex , I faced similar issue when tried creating it through Azure Portal in East US region but worked fine with North Europe region. Also was able to do it with Azure CLI. Below is the command I used.

    az mysql flexible-server create --location northeurope --resource-group xxxxxx --name xxxxxxx --admin-user xxxxxx \  
        --admin-password xxxxxx --sku-name Standard_D2ds_v4 --tier GeneralPurpose --public-access 0.0.0.0 \  
        --storage-size 32 --tags "key=value" --version 5.7  
    

    Can you please try this once and see if it works in other regions?

    For the Azure Portal issue related to few regions I have escalated it to product group and will update here as soon as I get a reply back.


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.