Azure-Samples / multicontainerwordpress

Multi-container using Docker Compose in Azure Web App for Containers
MIT License
40 stars 91 forks source link

issues on the step create an Azure Database for MySQL-server #10

Closed 2lach closed 4 years ago

2lach commented 5 years ago

[X] bug report

Minimal steps to reproduce

on the step create an Azure Database for MySQL-server Command: ▶ az mysql server create --resource-group myResourceGroup --name <mysql-server-name> --location "South Central US" --admin-user adminuser --admin-password My5up3rStr0ngPaSw0rd! --sku-name B_Gen4_1 --version 5.7

log messages given by the failure

Deployment failed. Correlation ID: 0df20b54-0307-427c-9639-fd8fdfd6c8f8. Gen4 hardware is not supported for this region.

Also: using My5up3rStr0ngPaSw0rd! did not work properly (this could however be my setup causing the issue, but if anybody runs into a similar problem it could be worth mentioning) this was solved it by removing ! from --admin-password ending.

Expected/desired behavior

Give suggestion of similar available hardware in the choosen region

OS and Version?

MacOs Mojave & Iterm

Mention any other details that might be useful

I solved this issue by using: --sku-name B_Gen5_2 --version 5.7 Full command:

▶ az mysql server create --resource-group ComposeTest --name composetestmysqldatabase123  --location "North Europe" --admin-user adminuser --admin-password My5up3rStr0ngPaSw0rd --sku-name B_Gen5_2 --version 5.7
2lach commented 4 years ago

Issue closed