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

Commit 65b3e14

Browse files
committed
Update with changes - including casing issue.
1 parent e2ccdca commit 65b3e14

1 file changed

Lines changed: 30 additions & 11 deletions

File tree

docs/linux/sql-server-linux-shared-disk-cluster-configure.md

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure failover cluster instance - SQL Server on Linux | Microsoft Docs
2+
title: Configure failover cluster instance - SQL Server on Linux (RHEL) | Microsoft Docs
33
description:
44
author: MikeRayMSFT
55
ms.author: mikeray
@@ -10,28 +10,37 @@ ms.prod: sql-linux
1010
ms.technology: database-engine
1111
ms.assetid: 31c8c92e-12fe-4728-9b95-4bc028250d85
1212
---
13-
# Configure failover cluster instance - SQL Server on Linux
13+
# Configure failover cluster instance - SQL Server on Linux (RHEL)
1414

1515
[!INCLUDE[tsql-appliesto-sslinux-only](../includes/tsql-appliesto-sslinux-only.md)]
1616

17-
This article explains how to create a two-node shared disk failover cluster instance (FCI) for SQL Server. The article includes instructions and script examples for Red Hat Enterprise Linux (RHEL) or Suse Linux Enterprise Server (SLES). Ubuntu distributions are similar to RHEL so the script examples will normally also work on Ubuntu.
17+
A SQL Server two-node shared disk failover cluster instance provides server-level redundancy for high availability. In this tutorial, you learn how to create a two-node failover cluster instance of SQL Server on Linux. The specific steps that you will complete include:
18+
19+
> [!div class="checklist"]
20+
> * Set up and configure Linux
21+
> * Install and configure SQL Server
22+
> * Configure the hosts file
23+
> * Configure shared storage and move the database files
24+
> * Install and configure Pacemaker on each cluster node
25+
> * Configure the failover cluster instance
26+
27+
This article explains how to create a two-node shared disk failover cluster instance (FCI) for SQL Server. The article includes instructions and script examples for Red Hat Enterprise Linux (RHEL). Ubuntu distributions are similar to RHEL so the script examples will normally also work on Ubuntu.
1828

1929
For conceptual information, see [SQL Server Failover Cluster Instance (FCI) on Linux](sql-server-linux-shared-disk-cluster-concepts.md).
2030

2131
## Prerequisites
2232

2333
To complete the end-to-end scenario below you need two machines to deploy the two nodes cluster and another server for storage. Below steps outline how these servers will be configured.
2434

25-
## Setup and configure Linux
35+
## Set up and configure Linux
2636

2737
The first step is to configure the operating system on the cluster nodes. On each node in the cluster, configure a linux distribution. Use the same distribution and version on both nodes. Use either one or the other of the following distributions:
2838

2939
* RHEL with a valid subscription for the HA add-on
30-
* SLES with SUSE Linux Enterprise High Availability Extension 12 SP2.
3140

3241
## Install and configure SQL Server
3342

34-
1. Install and setup SQL Server on both nodes. For detailed instructions see [Install SQL Server on Linux](sql-server-linux-setup.md).
43+
1. Install and set up SQL Server on both nodes. For detailed instructions see [Install SQL Server on Linux](sql-server-linux-setup.md).
3544
1. Designate one node as primary and the other as secondary, for purposes of configuration. Use these terms for the following this guide.
3645
1. On the secondary node, stop and disable SQL Server.
3746
The following example stops and disables SQL Server:
@@ -41,7 +50,7 @@ The first step is to configure the operating system on the cluster nodes. On eac
4150
```
4251

4352
> [!NOTE]
44-
> At setup time, a Server Master Key is generated for the SQL Server instance and placed at `var/opt/mssql/secrets/machine-key`. On Linux, SQL Server always runs as a local account called mssql. Because it’s a local account, its identity isn’t shared across nodes. Therefore, you need to copy the encryption key from primary node to each secondary node so each local mssql account can access it to decrypt the Server Master Key.
53+
> At set up time, a Server Master Key is generated for the SQL Server instance and placed at `var/opt/mssql/secrets/machine-key`. On Linux, SQL Server always runs as a local account called mssql. Because it’s a local account, its identity isn’t shared across nodes. Therefore, you need to copy the encryption key from primary node to each secondary node so each local mssql account can access it to decrypt the Server Master Key.
4554

4655
1. On the primary node, create a SQL server login for Pacemaker and grant the login permission to run `sp_server_diagnostics`. Pacemaker will use this account to verify which node is running SQL Server.
4756

@@ -144,8 +153,7 @@ You need to provide storage that both nodes can access. You can use iSCSI, NFS,
144153
sudo yum install mssql-server-ha
145154
```
146155

147-
<!--#####################################################################################################################-->
148-
## Configure the Failover Cluster Instance
156+
## Configure the failover cluster instance
149157

150158
The FCI will be created in a resource group. This is a little bit easier since the resource group alleviates the need for constraints. However, add the resources into the resource group in the order they should start. The order they should start is:
151159

@@ -262,9 +270,20 @@ This example will create an FCI in the group NewLinFCIGrp. The name of the resou
262270
|**Red Hat Enterprise Linux with HA add-on** |[Configure](sql-server-linux-shared-disk-cluster-red-hat-7-configure.md)<br/>[Operate](sql-server-linux-shared-disk-cluster-red-hat-7-operate.md)
263271
|**SUSE Linux Enterprise Server with HA add-on** |[Configure](sql-server-linux-shared-disk-cluster-sles-configure.md)
264272
-->
273+
## Summary
274+
275+
In this tutorial you completed the following tasks.
276+
277+
> [!div class="checklist"]
278+
> * Set up and configure Linux
279+
> * Install and configure SQL Server
280+
> * Configure the hosts file
281+
> * Configure shared storage and move the database files
282+
> * Install and configure Pacemaker on each cluster node
283+
> * Configure the failover cluster instance
265284

266-
## Next Steps
285+
## Next steps
267286

268287
- [Operate failover cluster instance - SQL Server on Linux](sql-server-linux-shared-disk-cluster-operate.md)
269288

270-
<!--Image references-->
289+
<!--Image references-->

0 commit comments

Comments
 (0)