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
Clarified the terminology around endpoints. The term 'listener' was being used in reference to an endpoint, but there was the possibility that the use of this term could cause confusion as the term 'listener' is more commonly associated with the Availability Group listener.
Copy file name to clipboardExpand all lines: docs/database-engine/availability-groups/windows/configure-distributed-availability-groups.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ To configure a distributed availability group, you must have the following:
33
33
34
34
Requires **CREATE AVAILABILITY GROUP** permission on the server to create an availability group and `sysadmin` to fail over a distributed availability group.
35
35
36
-
## Set the endpoint listeners to listen to all IP addresses
36
+
## Set the database mirroring endpoints to listen on all IP addresses
37
37
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`).
39
39
40
-
### Create an endpoint to listen to all IP addresses
40
+
### Create a database mirroring endpoint to listen on all IP addresses
41
41
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.
43
43
44
44
```sql
45
45
CREATE ENDPOINT [aodns-hadr]
@@ -58,9 +58,9 @@ CREATE ENDPOINT [aodns-hadr]
58
58
GO
59
59
```
60
60
61
-
### Alter an endpoint to listen to all IP addresses
61
+
### Alter an existing database mirroring endpoint to listen on all IP addresses
62
62
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.
64
64
65
65
```sql
66
66
ALTER ENDPOINT [aodns-hadr]
@@ -75,7 +75,7 @@ GO
75
75
76
76
### Create the primary availability group on the first cluster
77
77
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.
0 commit comments