Skip to content

Commit 3ebb4c7

Browse files
committed
fix numbering
1 parent b6f2918 commit 3ebb4c7

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ To configure shared storage, you need to create a network share and mount it to
125125
# cp /var/opt/mssql/data/* /var/opt/mssql/tmp
126126
# rm /var/opt/mssql/data/*
127127
```
128-
128+
129129
2. Install `cifs-utils` on both nodes. The following command installs `cifs-utils`.
130130

131131
```
@@ -159,17 +159,17 @@ To configure shared storage, you need to create a network share and mount it to
159159
5. Create a file that contains credentials for mounting the share. The file needs to identify the username, password and domain as follows:
160160
161161
```bash
162-
username=<username>
163-
password=<password>
164-
domain=<domain>
162+
username=<username>
163+
password=<password>
164+
domain=<domain>
165165
```
166166
167-
For example, the credential file may contain the following values:
167+
For example, the credential file may contain the following values:
168168
169169
```bash
170-
username=sqlfci
171-
password=KD(YE8e937!0008x
172-
domain=CORP
170+
username=sqlfci
171+
password=KD(YE8e937!0008x
172+
domain=CORP
173173
```
174174
175175
6. Get the SQL Server user ID (uid), and group ID (gid). To get the SQL Server uid and gid, run the following command from the primary node.
@@ -181,13 +181,13 @@ To configure shared storage, you need to create a network share and mount it to
181181
Update the following line and append it to `/etc/fstab` to instruct the operating system where and how to mount the file for SQL Server:
182182
183183
```bash
184-
//<storage server>/<share> /var/opt/mssql/data cifs credentials=<file>,uid=<mssql uid>,gid=<mssql gid> 0 0
184+
//<storage server>/<share> /var/opt/mssql/data cifs credentials=<file>,uid=<mssql uid>,gid=<mssql gid> 0 0
185185
```
186186
187187
For example, the following line adds the `\\StorageServer\SQL` share to the `/var/opt/mssql/data` with credentials for Linux cluster file with the SQL Server UID and gid.
188188
189189
```bash
190-
//machine/share /var/opt/mssql/data cifs credentials=/.cifscredfile,uid=995,gid=996 0 0
190+
//machine/share /var/opt/mssql/data cifs credentials=/.cifscredfile,uid=995,gid=996 0 0
191191
```
192192
193193
If the `/etc/fstab` file was edited correctly, the share is mounted to`/var/opt/mssql/data` and will be automatically re-mounted when the node restarts.

0 commit comments

Comments
 (0)