Skip to content

Commit 3abf57f

Browse files
Merge pull request MicrosoftDocs#10197 from howarthcd/patch-2
Update configure-distributed-availability-groups.md
2 parents 24fc86b + ee62c0c commit 3abf57f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/database-engine/availability-groups/windows/configure-distributed-availability-groups.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ To configure a distributed availability group, you must have the following:
3333

3434
Requires **CREATE AVAILABILITY GROUP** permission on the server to create an availability group and `sysadmin` to fail over a distributed availability group.
3535

36-
## Set the endpoint listeners to listen to all IP addresses
36+
## Set the database mirroring endpoints to listen on all IP addresses
3737

38-
Make sure the endpoints can communicate between the different availability groups in the distributed availability group. If one availability group is set to a specific network on the endpoint, the distributed availability group doesn't work properly. On each server that hosts a replica in the distributed availability group, set the listener to listen on all IP addresses (`LISTENER_IP = ALL`).
38+
Make sure the database mirroring endpoints can communicate between the different availability groups in the distributed availability group. If one availability group is set to a specific network on the database mirroring endpoint, the distributed availability group doesn't work properly. On each server that hosts a replica in the distributed availability group, set the database mirroring endpoint to listen on all IP addresses (`LISTENER_IP = ALL`).
3939

40-
### Create an endpoint to listen to all IP addresses
40+
### Create a database mirroring endpoint to listen on all IP addresses
4141

42-
For example, the following script creates a listener endpoint on TCP port 5022 that listens on all IP addresses.
42+
For example, the following script creates a new database mirroring endpoint on TCP port 5022 that listens on all IP addresses.
4343

4444
```sql
4545
CREATE ENDPOINT [aodns-hadr]
@@ -58,9 +58,9 @@ CREATE ENDPOINT [aodns-hadr]
5858
GO
5959
```
6060

61-
### Alter an endpoint to listen to all IP addresses
61+
### Alter an existing database mirroring endpoint to listen on all IP addresses
6262

63-
For example, the following script changes a listener endpoint to listen on all IP addresses.
63+
For example, the following script changes an existing database mirroring endpoint to listen on all IP addresses.
6464

6565
```sql
6666
ALTER ENDPOINT [aodns-hadr]
@@ -75,7 +75,7 @@ GO
7575

7676
### Create the primary availability group on the first cluster
7777

78-
Create an availability group on the first Windows Server Failover Cluster (WSFC). In this example, the availability group is named `ag1` for the database `db1`. The primary replica of the primary availability group is known as the **global primary** in a distributed availability group. Server1 is the global primary in this example.
78+
Create an availability group on the first Windows Server Failover Cluster (WSFC). In this example, the availability group is named `ag1` for the database `db1`. The primary replica of the primary availability group is known as the **global primary** in a distributed availability group. Server1 is the global primary in this example.
7979

8080
```sql
8181
CREATE AVAILABILITY GROUP [ag1]

0 commit comments

Comments
 (0)