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
This topic demonstrates creating a sample application that uses Java and [JDBC](https://en.wikipedia.org/wiki/Java_Database_Connectivity) to store and retrieve information in [Azure Database for PostgreSQL Flexible Server](./index.yml).
19
+
This article demonstrates creating a sample application that uses Java and [JDBC](https://en.wikipedia.org/wiki/Java_Database_Connectivity) to store and retrieve information in [Azure Database for PostgreSQL Flexible Server](./index.yml).
20
20
21
21
JDBC is the standard Java API to connect to traditional relational databases.
22
22
@@ -58,7 +58,7 @@ Replace the placeholders with the following values, which are used throughout th
58
58
-`<YOUR_LOCAL_IP_ADDRESS>`: The IP address of your local computer, from which you'll run your Spring Boot application. One convenient way to find it is to open [whatismyip.akamai.com](http://whatismyip.akamai.com/).
59
59
60
60
> [!IMPORTANT]
61
-
> When setting <YOUR_POSTGRESQL_AD_NON_ADMIN_USERNAME>, the username must already exist in your Azure AD tenant or you will be unable to create an Azure AD user in your database.
61
+
> When setting `<YOUR_POSTGRESQL_AD_NON_ADMIN_USERNAME>`, the username must already exist in your Azure AD tenant or you will be unable to create an Azure AD user in your database.
62
62
63
63
### [Password](#tab/password)
64
64
@@ -95,6 +95,8 @@ az group create \
95
95
96
96
## Create an Azure Database for PostgreSQL instance
97
97
98
+
The following sections describe how to create and configure your database instance.
99
+
98
100
### Create a PostgreSQL server and set up admin user
99
101
100
102
The first thing we'll create is a managed PostgreSQL server.
@@ -106,7 +108,7 @@ The first thing we'll create is a managed PostgreSQL server.
106
108
107
109
If you're using Azure CLI, run the following command to make sure it has sufficient permission:
108
110
109
-
```bash
111
+
```azurecli
110
112
az login --scope https://graph.microsoft.com/.default
111
113
```
112
114
@@ -121,10 +123,10 @@ az postgres flexible-server create \
121
123
--output tsv
122
124
```
123
125
124
-
Follow the steps in this [article](/azure/postgresql/flexible-server/how-to-manage-azure-ad-users#create-or-delete-azure-ad-administrators-using-azure-portal-or-azure-resource-manager-arm-api) to set up an Azure AD administrator after creating the server.
126
+
To set up an Azure AD administrator after creating the server, follow the steps in [Manage Azure Active Directory roles in Azure Database for PostgreSQL - Flexible Server](how-to-manage-azure-ad-users.md).
125
127
126
128
> [!IMPORTANT]
127
-
> When setting up an administrator, a new user with full administrator privileges is added to the PostgreSQL Flexible Server's Azure database. Multiple Azure AD administrators can be created per PostgreSQL Flexible Server.
129
+
> When setting up an administrator, a new user with full administrator privileges is added to the PostgreSQL Flexible Server's Azure database. You can create multiple Azure AD administrators per PostgreSQL Flexible Server.
0 commit comments