英文:
Azure redis deployment failure terminal provisioning
问题
I am creating this azure redis resource and getting the terminal provision failure error, tried couple of time getting the same
here is the error
"code": "ResourceDeploymentFailure",
"target": "/subscriptions/xxxxxxxx/resourceGroups/rg- prod/providers/Microsoft.Cache/redisEnterprise/ redis-cache",
"message": "The resource write operation failed to complete successfully, because it reached terminal provisioning state 'Failed'."
Here is the raw error
{ "code":"ResourceDeploymentFailure","target":"/subscriptions/xxxxx-484f-4daf-a0bd-xxxxxxxx/resourceGroups/rg-prod/providers/Microsoft.Cache/redisEnterprise/ redis-cache","message":"The resource write operation failed to complete successfully, because it reached terminal provisioning state 'Failed'."}
英文:
I am creating this azure redis resource and getting the terminal provision failure error, tried couple of time getting the same
here is the error
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
here is the RAW error
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-html -->
"code": "ResourceDeploymentFailure",
"target": "/subscriptions/xxxxxxxx/resourceGroups/rg- prod/providers/Microsoft.Cache/redisEnterprise/ redis-cache",
"message": "The resource write operation failed to complete successfully, because it reached terminal provisioning state 'Failed'."
}
Here is the raw error
<!-- end snippet -->
{"code":"ResourceDeploymentFailure","target":"/subscriptions/xxxxx-484f-4daf-a0bd-xxxxxxxx/resourceGroups/rg-prod/providers/Microsoft.Cache/redisEnterprise/ redis-cache","message":"The resource write operation failed to complete successfully, because it reached terminal provisioning state 'Failed'."}
<!-- end snippet -->
答案1
得分: 1
据我所知,错误可能是由于配置问题导致的,如MS文档(https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/cache-troubleshoot-server)中所述。检查以下配置问题可能会导致错误。
- Azure基础结构存在问题,例如服务器故障或网络中断。冲突可能会因为Redis Cache设置在资源管理器虚拟网络(https://techcommunity.microsoft.com/t5/azure-paas-blog/troubleshooting-azure-redis-connectivity-issues/ba-p/1450361)的子网上,该子网还有其他资源。
- 缓存的虚拟网络设置存在问题,例如客户端主机未连接到Azure Cache for Redis所在的同一虚拟网络。
- 如下图所示,您可以在"支持 + 故障排除"中检查错误,如果问题仍然存在,可以联系Microsoft支持团队。
参考这些MS文档[1](https://learn.microsoft.com/en-us/answers/questions/1005569/cannot-create-redis-cache-%28premium-tier%29-using-vne)和[2](https://learn.microsoft.com/en-us/azure/azure-cache-for-redis/cache-configure),可能会有帮助。
英文:
AFAIK the error occurs when there is a configuration issues as per MS document troubleshoot. Check below configuration issues may cause the error.
- There was a problem with the Azure infrastructure, like a server failure or a network outage. Conflicts may arise because the Redis Cache was set up on a subnet of a Resource Manager virtual network that also has other resources.
- There are issues with the virtual network settings for the cache, such as the client host machine not being on the same virtual network as the Azure Cache for Redis.
- As shown in below image you can check the error in Support + Troubleshooting and still issue exist you can reach out Microsoft support team.
Refer these MS document1 and 2 it may helps.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论