You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -62,7 +62,7 @@ You create an Azure Database for MariaDB server with a defined set of [compute a
62
62
> [!TIP]
63
63
> With **auto-growth** enabled your server increases storage when you are approaching the allocated limit, without impacting your workload.
64
64
65
-
4.Select**Create**. In a minute or two, a new Azure Database for MariaDB server is running in the cloud. To monitor the deployment process, select **Notifications** on the toolbar.
65
+
4.Click**Review + create**. You can click on the **Notifications** button on the toolbar to monitor the deployment process. Deployment can take up to 20 minutes.
Copy file name to clipboardExpand all lines: articles/mysql/tutorial-design-database-using-portal.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: ajlam
5
5
ms.author: andrela
6
6
ms.service: mysql
7
7
ms.topic: tutorial
8
-
ms.date: 12/02/2019
8
+
ms.date: 3/20/2020
9
9
ms.custom: mvc
10
10
---
11
11
@@ -31,11 +31,13 @@ Open your favorite web browser, and visit the [Microsoft Azure portal](https://p
31
31
## Create an Azure Database for MySQL server
32
32
An Azure Database for MySQL server is created with a defined set of [compute and storage resources](./concepts-compute-unit-and-storage.md). The server is created within an [Azure resource group](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-overview).
33
33
34
-
1. Navigate to **Databases** > **Azure Database for MySQL**. If you cannot find MySQL Server under **Databases** category, click **See all** to show all available database services. You can also type **Azure Database for MySQL** in the search box to quickly find the service.
34
+
1. Select the **Create a resource** button (+) in the upper left corner of the portal.
35
+
36
+
2. Select **Databases** > **Azure Database for MySQL**. If you cannot find MySQL Server under the **Databases** category, click **See all** to show all available database services. You can also type **Azure Database for MySQL** in the search box to quickly find the service.
35
37
36
38

37
39
38
-
2. Click **Azure Database for MySQL** tile, and then click **Create**. Fill out the Azure Database for MySQL form.
40
+
3. Click **Azure Database for MySQL** tile. Fill out the Azure Database for MySQL form.
@@ -57,7 +59,7 @@ An Azure Database for MySQL server is created with a defined set of [compute and
57
59
> [!TIP]
58
60
> With **auto-growth** enabled your server increases storage when you are approaching the allocated limit, without impacting your workload.
59
61
60
-
3. Click **Create**. In a minute or two, a new Azure Database for MySQL server is running in the cloud. You can click **Notifications** button on the toolbar to monitor the deployment process.
62
+
4. Click **Review + create**. You can click on the **Notifications** button on the toolbar to monitor the deployment process. Deployment can take up to 20 minutes.
61
63
62
64
## Configure firewall
63
65
Azure Databases for MySQL are protected by a firewall. By default, all connections to the server and the databases inside the server are rejected. Before connecting to Azure Database for MySQL for the first time, configure the firewall to add the client machine's public network IP address (or IP address range).
@@ -90,7 +92,7 @@ mysql -h mydemoserver.mysql.database.azure.com -u myadmin@mydemoserver -p
90
92
```
91
93
92
94
## Create a blank database
93
-
Once you’re connected to the server, create a blank database to work with.
95
+
Once you're connected to the server, create a blank database to work with.
94
96
```sql
95
97
CREATEDATABASEmysampledb;
96
98
```
@@ -106,9 +108,9 @@ Now that you know how to connect to the Azure Database for MySQL database, you c
106
108
First, create a table and load it with some data. Let's create a table that stores inventory information.
0 commit comments