Azure managed redis internal server error

Totte Perera 0 Reputation points
2025-10-07T07:38:42.3233333+00:00

I get this error when trying to create an azure managed redis cache.

  • Encountered internal server error. Diagnostic information: timestamp '20251007T071513Z', subscription id '0a5ebe07', tracking id '9134dd14-3949-4256-abf3-1fd857e88660', request correlation id '6294a962-<removed PII>'. (Code: ResourceDeploymentFailure, Target: /subscriptions/0a5ebe07/resourceGroups/thor-parts-test-rg/providers/Microsoft.Cache/redisEnterprise/thor-parts-test-cache)
Azure Managed Applications
Azure Managed Applications
An Azure service that enables managed service providers, independent software vendors, and enterprise IT teams to deliver turnkey solutions through the Azure Marketplace or service catalog.
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Siva shunmugam Nadessin 2,070 Reputation points Microsoft External Staff Moderator
    2025-10-07T18:07:22.27+00:00

    Hello Totte Perera,

    Consider using Azure Powershell as UI might be facing some transient issues.

    1.      Install the Az PowerShell module.

    Below contains the step-by-step instructions to install.

    Install Azure PowerShell on Windows | Microsoft Learn

    2.      Run Connect-AzAccount to authenticate.

    3.      Use New-AzRedisEnterpriseCache to create the instance.

    az redis create \
      --location eastus \
      --name MyRedisCache \
      --resource-group MyResourceGroup \
      --sku Basic \
      --vm-size C1
    

     https://free.blessedness.top/en-us/azure/redis/how-to-manage-redis-cache-powershell?pivots=azure-managed-redis

    Explanation:

    --location: Azure region (e.g., eastus, westus2)

    --name: Unique name for your Redis instance

    --resource-group: The resource group to contain the cache

    --sku: Pricing tier (Basic, Standard, Premium)

    --vm-size: Size of the virtual machine (e.g., C0, C1)

    Let us know if you have further queries?

    Please click Accept Answer if the above was helpful.

    Thanks.

    0 comments No comments

Your answer

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