Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 18dd162

Browse files
authored
Merge pull request #11702 from MightyPen/aug20p
Fixing public PR 2774 (PR 11689), bad link had moniker, and had misplaced '.md'.
2 parents 5045f47 + afe291f commit 18dd162

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/linux/sql-server-linux-availability-group-configure-ha.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about creating a SQL Server Always On Availability Group (AG)
55
author: MikeRayMSFT
66
ms.author: mikeray
77
ms.reviewer: vanto
8-
ms.date: 02/14/2018
8+
ms.date: 08/26/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: linux
@@ -188,16 +188,16 @@ You can also configure an AG with `CLUSTER_TYPE=EXTERNAL` using SQL Server Manag
188188

189189
### Join secondary replicas to the AG
190190

191-
The pacemaker user requires `ALTER`, `CONTROL`, and `VIEW DEFINITION` permissions on the availability group on all replicas. To grant permissions, run the following Transact-SQL script after the availability group is created on the primary replica and each secondary replica immediately after they are added to the availability group. Before you run the script, replace `<pacemakerLogin>` with the name of the pacemaker user account. If you do not have a login for pacemaker, [create a sql server login for pacemaker](sql-server-linux-availability-group-cluster-ubuntu?view=sql-server-2017#create-a-sql-server-login-for-pacemaker.md).
191+
The pacemaker user requires `ALTER`, `CONTROL`, and `VIEW DEFINITION` permissions on the availability group on all replicas. To grant permissions, run the following Transact-SQL script after the availability group is created on the primary replica and each secondary replica immediately after they are added to the availability group. Before you run the script, replace `<pacemakerLogin>` with the name of the pacemaker user account. If you do not have a login for pacemaker, [create a sql server login for pacemaker](sql-server-linux-availability-group-cluster-ubuntu.md#create-a-sql-server-login-for-pacemaker).
192192

193-
```Transact-SQL
193+
```sql
194194
GRANT ALTER, CONTROL, VIEW DEFINITION ON AVAILABILITY GROUP::ag1 TO <pacemakerLogin>
195195
GRANT VIEW SERVER STATE TO <pacemakerLogin>
196196
```
197197

198198
The following Transact-SQL script joins a SQL Server instance to an AG named `ag1`. Update the script for your environment. On each SQL Server instance that hosts a secondary replica, run the following Transact-SQL to join the AG.
199199

200-
```Transact-SQL
200+
```sql
201201
ALTER AVAILABILITY GROUP [ag1] JOIN WITH (CLUSTER_TYPE = EXTERNAL);
202202

203203
ALTER AVAILABILITY GROUP [ag1] GRANT CREATE ANY DATABASE;

0 commit comments

Comments
 (0)