Skip to content

Commit 839ce0b

Browse files
committed
edits
1 parent 0120615 commit 839ce0b

File tree

4 files changed

+33
-31
lines changed

4 files changed

+33
-31
lines changed

articles/mysql/flexible-server/quickstart-create-arm-template.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ms.date: 02/16/2023
2626

2727
## Create a server that has public access
2828

29-
Create an *azuredeploy.json* file with the following content to create an Azure Database for MySQL flexible server instance using public access connectivity method and also create a database on the server. Update the **firewallRules** default value if needed.
29+
To create an Azure Database for MySQL flexible server instance by using the public access connectivity method and create a database on the server, reate an *azuredeploy.json* file that has the following code examples. If necessary, update the `firewallRules` default value.
3030

3131
```json
3232
{
@@ -73,7 +73,7 @@ Create an *azuredeploy.json* file with the following content to create an Azure
7373
"MemoryOptimized"
7474
],
7575
"metadata": {
76-
"description": "The tier of the particular SKU. High Availability is available only for GeneralPurpose and MemoryOptimized sku."
76+
"description": "The tier of the specific SKU. High vailability is available only for GeneralPurpose and MemoryOptimized SKUs."
7777
}
7878
},
7979
"version": {
@@ -91,7 +91,7 @@ Create an *azuredeploy.json* file with the following content to create an Azure
9191
"type": "string",
9292
"defaultValue": "1",
9393
"metadata": {
94-
"description": "Availability Zone information of the server. (Leave blank for No Preference)."
94+
"description": "Availability zone information of the server. (If you don't have a preference, leave leave blank.)"
9595
}
9696
},
9797
"haEnabled": {
@@ -103,14 +103,14 @@ Create an *azuredeploy.json* file with the following content to create an Azure
103103
"ZoneRedundant"
104104
],
105105
"metadata": {
106-
"description": "High availability mode for a server : Disabled, SameZone, or ZoneRedundant"
106+
"description": "High availability mode for a server: Disabled, SameZone, or ZoneRedundant"
107107
}
108108
},
109109
"standbyAvailabilityZone": {
110110
"type": "string",
111111
"defaultValue": "2",
112112
"metadata": {
113-
"description": "Availability zone of the standby server."
113+
"description": "The availability zone of the standby server."
114114
}
115115
},
116116
"storageSizeGB": {
@@ -133,7 +133,7 @@ Create an *azuredeploy.json* file with the following content to create an Azure
133133
"type": "string",
134134
"defaultValue": "Standard_B1ms",
135135
"metadata": {
136-
"description": "The name of the sku, e.g. Standard_D32ds_v4."
136+
"description": "The name of the SKU. For example, Standard_D32ds_v4."
137137
}
138138
},
139139
"backupRetentionDays": {
@@ -256,7 +256,7 @@ Create an *azuredeploy.json* file with the following content to create an Azure
256256

257257
## Create a server that has private access
258258

259-
Modify the following code samples to create an Azure Database for MySQL flexible server that has private access connectivity inside a virtual network:
259+
Modify the following code examples to create an Azure Database for MySQL flexible server that has private access connectivity inside a virtual network:
260260

261261
```json
262262
{
@@ -488,14 +488,14 @@ Modify the following code samples to create an Azure Database for MySQL flexible
488488

489489
Deploy the JSON file by using either the Azure CLI or Azure PowerShell.
490490

491-
# [Azure CLI](#tab/CLI)
491+
# [Azure CLI](#tab/azure-cli)
492492

493493
```azurecli
494494
az group create --name exampleRG --location eastus
495495
az deployment group create --resource-group exampleRG --template-file azuredeploy.json
496496
```
497497

498-
# [Azure PowerShell](#tab/PowerShell)
498+
# [Azure PowerShell](#tab/azure-powershell)
499499

500500
```azurepowershell
501501
New-AzResourceGroup -Name exampleRG -Location eastus
@@ -510,14 +510,14 @@ Complete the steps to enter the parameter values. When the deployment finishes,
510510

511511
To verify that your Azure Database for MySQL flexible server was created in the resource group:
512512

513-
# [Azure CLI](#tab/CLI)
513+
# [Azure CLI](#tab/azure-cli)
514514

515515
```azurecli
516516
az resource list --resource-group exampleRG
517517
518518
```
519519

520-
# [Azure PowerShell](#tab/PowerShell)
520+
# [Azure PowerShell](#tab/azure-powershell)
521521

522522
```azurepowershell
523523
Get-AzResource -ResourceGroupName exampleRG
@@ -529,13 +529,13 @@ Get-AzResource -ResourceGroupName exampleRG
529529

530530
To delete the resource group and all the resources that are in the resource group:
531531

532-
# [Azure CLI](#tab/CLI)
532+
# [Azure CLI](#tab/azure-cli)
533533

534534
```azurecli
535535
az group delete --name exampleRG
536536
```
537537

538-
# [Azure PowerShell](#tab/PowerShell)
538+
# [Azure PowerShell](#tab/azure-powershell)
539539

540540
```azurepowershell
541541
Remove-AzResourceGroup -Name exampleRG

articles/mysql/flexible-server/quickstart-create-bicep.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ Follow the instructions to enter the parameter values. When the deployment finis
345345

346346
## Review deployed resources
347347

348-
Follow these steps to verify if your Azure Database for MySQL flexible server instance was created in the resource group.
348+
To verify that your Azure Database for MySQL flexible server was created in the resource group:
349349

350350
# [Azure CLI](#tab/azure-cli)
351351

@@ -364,15 +364,15 @@ Get-AzResource -ResourceGroupName exampleRG
364364

365365
## Clean up resources
366366

367-
To delete the resource group and the resources contained in the resource group:
367+
To delete the resource group and the resources that are contained in the resource group:
368368

369369
# [Azure CLI](#tab/azure-cli)
370370

371371
```azurecli
372372
az group delete --name exampleRG
373373
```
374374

375-
# [PowerShell](#tab/azure-powershell)
375+
# [Azure PowerShell](#tab/azure-powershell)
376376

377377
```azurepowershell
378378
Remove-AzResourceGroup -Name exampleRG
@@ -382,5 +382,5 @@ Remove-AzResourceGroup -Name exampleRG
382382

383383
## Related content
384384

385-
- For a step-by-step tutorial that guides you through the process of creating a Bicep template, see [Quickstart: Create Bicep files with Visual Studio Code](../../azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio-code.md).
385+
- For a step-by-step tutorial that guides you through the process of creating a Bicep template, see [Quickstart: Create Bicep files by using Visual Studio Code](../../azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio-code.md).
386386
- For a step-by-step tutorial that shows how to build an app by using Azure App Service and MySQL, see[Build a PHP (Laravel) web app with MySQL](tutorial-php-database-app.md).

articles/mysql/flexible-server/quickstart-create-server-cli.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ This quickstart shows you how to use [Azure CLI](/cli/azure/get-started-with-azu
2121

2222
## Open Azure Cloud Shell
2323

24-
[Azure Cloud Shell](../../cloud-shell/overview.md) is a free, interactive shell that you can use to run the steps that are described in this article. It has common Azure tools preinstalled and configured to use with your account.
24+
[Azure Cloud Shell](../../cloud-shell/overview.md) is a free, interactive shell that you can use to run the steps that are described in this article. In Cloud Shell, common Azure tools are preinstalled and configured to use with your account.
2525

26-
To open Cloud Shell, in the upper-right corner of a code example, select **Try it** corner of a code block. You can also open Cloud Shell in a separate browser tab by going to [https://shell.azure.com/bash](https://shell.azure.com/bash). Select **Copy** to copy a code sample, paste the code in Cloud Shell, and then select **Enter** to run it.
26+
To open Cloud Shell, in the upper-right corner of a code example, select **Try it**.
2727

28-
If you prefer to install and use the Azure CLI, this quickstart requires Azure CLI version 2.0 or later. Run `az --version` to find the version of your Azure CLI installation. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
28+
You can also open Cloud Shell in a separate browser tab by going to [https://shell.azure.com/bash](https://shell.azure.com/bash). Select **Copy** to copy the contents of a code block. In Cloud Shell, paste the code and select **Enter** to run it.
29+
30+
If you prefer to install and use the Azure CLI, this quickstart requires Azure CLI version 2.0 or later. To find the version of your Azure CLI installation. , run `az --version`. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
2931

3032
## Prerequisites
3133

@@ -104,7 +106,7 @@ az mysql flexible-server db create -d newdatabase
104106
```
105107

106108
> [!NOTE]
107-
> Connections to Azure Database for MySQL - Flexible Server communicate by using port 3306. If you try to connect from within a corporate network, outbound traffic over port 3306 might not be allowed. If this is the case, you can't connect to your server unless your IT department opens port 3306.
109+
> Connections to Azure Database for MySQL - Flexible Server communicate by using port 3306. If you try to connect from within a corporate network, outbound traffic through port 3306 might not be allowed. You can't connect to your server unless your IT department opens port 3306.
108110
109111
## Get the connection information
110112

@@ -149,7 +151,7 @@ The result is in JSON format. Make a note of the values for `fullyQualifiedDomai
149151

150152
## Connect and test the connection by using the Azure CLI
151153

152-
You can use Azure Database for MySQL - Flexible Server to connect to your Azure Database for MySQL flexible server by using the `az mysql flexible-server connect` command in the Azure CLI. You can use this command to test connectivity to your database server, create a quick basic database, and run queries directly against your server without installing *mysql.exe* or MySQL Workbench. You can also use the command in interactive mode to run multiple queries at a time.
154+
You can use Azure Database for MySQL - Flexible Server to connect to your flexible server by using the `az mysql flexible-server connect` command in the Azure CLI. You can use this command to test connectivity to your database server, create a quick basic database, and run queries directly against your server without installing *mysql.exe* or MySQL Workbench. You can also use the command in interactive mode to run multiple queries at a time.
153155

154156
Run the following script to test and validate the connection to the database from your development environment:
155157

@@ -197,7 +199,7 @@ If you created your Azure Database for MySQL flexible server by using private ac
197199

198200
If you created your Azure Database for MySQL - Flexible Server instance by using public access (allowed IP addresses), you can add your local IP address to the list of firewall rules on your server. For detailed guidance, see [Create or manage firewall rules](how-to-manage-firewall-portal.md).
199201

200-
To connect to the server from your local environment, you can use either [mysql.exe](https://dev.mysql.com/doc/refman/8.0/en/mysql.html) or [MySQL Workbench](./connect-workbench.md). Azure Database for MySQL - Flexible Server supports connecting your client applications to the Azure Database for MySQL - Flexible Server service by using Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL). TLS is an industry-standard protocol that ensures encrypted network connections between your database server and client applications, so you can adhere to compliance requirements. To connect with your MySQL Azure Database for MySQL flexible server, download the [public SSL certificate](https://dl.cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem) for certificate authority verification. To learn more about connecting with encrypted connections or disabling SSL, see [Connect to Azure Database for MySQL - Flexible Server by using encrypted connections](how-to-connect-tls-ssl.md).
202+
To connect to the server from your local environment, you can use either [mysql.exe](https://dev.mysql.com/doc/refman/8.0/en/mysql.html) or [MySQL Workbench](./connect-workbench.md). Azure Database for MySQL - Flexible Server supports connecting your client applications to the Azure Database for MySQL - Flexible Server service by using Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL). TLS is an industry-standard protocol that ensures encrypted network connections between your database server and client applications, so you can adhere to compliance requirements. To connect with your Azure Database for MySQL flexible server, download the [public SSL certificate](https://dl.cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem) for certificate authority verification. To learn more about connecting with encrypted connections or disabling SSL, see [Connect to Azure Database for MySQL - Flexible Server by using encrypted connections](how-to-connect-tls-ssl.md).
201203

202204
The following example shows how to connect to your Azure Database for MySQL flexible server by using the MySQL command-line client tool. You can install the tool if it's not already installed. Download the DigiCertGlobalRootCA certificate that's required for SSL connections. Use the `--ssl-mode=REQUIRED` connection string setting to enforce TLS/SSL certificate verification. Pass the local certificate file path to the `--ssl-ca` parameter. Replace values with your actual server name and password.
203205

@@ -234,13 +236,13 @@ mysql -h mydemoserver.mysql.database.azure.com -u mydemouser -p --ssl=true --ssl
234236
235237
## Clean up resources
236238

237-
If you don't need to use the resources that you created in another quickstart or tutorial, you can delete them by running the following command:
239+
If you don't need to use the resources that you created for this article in another quickstart or tutorial, you can delete them by running the following command:
238240

239241
```azurecli-interactive
240242
az group delete --name myresourcegroup
241243
```
242244

243-
If you want to delete only the server that you created, run the `az mysql server delete` command:
245+
If you want to delete only the flexible server that you created, run the `az mysql server delete` command:
244246

245247
```azurecli-interactive
246248
az mysql flexible-server delete --resource-group myresourcegroup --name mydemoserver

articles/mysql/flexible-server/quickstart-create-server-portal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.date: 06/13/2022
1414

1515
[!INCLUDE[applies-to-mysql-flexible-server](../includes/applies-to-mysql-flexible-server.md)]
1616

17-
Azure Database for MySQL flexible server is a managed service that you can use to run, manage, and scale highly available MySQL servers in the cloud. This quickstart shows you how to create an Azure Database for MySQL flexible server instance by using the Azure portal.
17+
Azure Database for MySQL - Flexible Server is a managed service that you can use to run, manage, and scale highly available MySQL servers in the cloud. This quickstart shows you how to create an Azure Database for MySQL flexible server by using the Azure portal.
1818

1919
If you don't have an Azure subscription, create a [free Azure account](https://azure.microsoft.com/free/) before you begin.
2020

@@ -24,7 +24,7 @@ In the [Azure portal](https://portal.azure.com), enter your credentials to sign
2424

2525
## Create an Azure Database for MySQL flexible server
2626

27-
You create an Azure Database for MySQL flexible server by using a defined set of [compute and storage resources](./concepts-compute-storage.md). You create the server within an [Azure resource group](../../azure-resource-manager/management/overview.md).
27+
You create an instance of Azure Database for MySQL - Flexible Server by using a defined set of [compute and storage resources](./concepts-compute-storage.md) to create a flexible server. You create the server within an [Azure resource group](../../azure-resource-manager/management/overview.md).
2828

2929
Complete these steps to create an Azure Database for MySQL flexible server:
3030

@@ -72,16 +72,16 @@ Complete these steps to create an Azure Database for MySQL flexible server:
7272
> :::image type="content" source="./media/quickstart-create-server-portal/networking.png" alt-text="Screenshot that shows the Networking tab.":::
7373
>
7474
75-
1. Select **Review + create** to review your Azure Database for MySQL - Flexible Server configuration.
75+
1. Select **Review + create** to review your Azure Database for MySQL flexible server configuration.
7676

7777
1. Select **Create** to provision the server. Provisioning might take a few minutes.
7878

79-
1. On the toolbar, select **Notifications** (the bell icon) to monitor the deployment process. When deployment is finished, you can select **Pin to dashboard** to create a tile for the Azure Database for MySQL flexible server on your Azure portal dashboard. This tile is a shortcut to the server's **Overview** pane. When you select **Go to resource**, the flexible server's **Overview** pane opens.
79+
1. On the toolbar, select **Notifications** (the bell icon) to monitor the deployment process. When deployment is finished, you can select **Pin to dashboard** to create a tile for the Azure Database for MySQL flexible server on your Azure portal dashboard. This tile is a shortcut to the server's **Overview** pane. When you select **Go to resource**, the **Overview** pane for the flexible server opens.
8080

8181
By default, these databases are created under your server: **information_schema**, **mysql**, **performance_schema**, and **sys**.
8282

8383
> [!NOTE]
84-
> To avoid connectivity problems, check whether your network allows outbound traffic by using port 3306, the port that Azure Database for MySQL - Flexible Server uses.
84+
> To avoid connectivity problems, check whether your network allows outbound traffic through port 3306, the port that Azure Database for MySQL - Flexible Server uses.
8585
8686
## Connect to the server
8787

@@ -102,7 +102,7 @@ After you select **Connect**, you can see details about how to connect locally b
102102
103103
## Clean up resources
104104

105-
When you no longer need the resources that you created to use in this quickstart, you can delete the resource group that has the Azure Database for MySQL - Flexible Server instance. Select the resource group for the Azure Database for MySQL - Flexible Server resource, and then select **Delete**. Enter the name of the resource group that you want to delete.
105+
When you no longer need the resources that you created to use in this quickstart, you can delete the resource group that contains the Azure Database for MySQL - Flexible Server instance. Select the resource group for the Azure Database for MySQL - Flexible Server resource, and then select **Delete**. Enter the name of the resource group that you want to delete.
106106

107107
## Next step
108108

0 commit comments

Comments
 (0)