Skip to content

Commit 14e6fcd

Browse files
authored
Merge pull request #17534 from WilliamAntonRohm/issue-5554
sql-docs/issues/5554 -- extraneous **
2 parents 6a1e541 + 6106a32 commit 14e6fcd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/linux/sql-server-linux-active-directory-authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Join your SQL Server Linux host with an Active Directory domain controller. For
6363
2. Set the ServicePrincipalName (SPN) for this account using the **setspn.exe** tool. The SPN must be formatted exactly as specified in the following example. You can find the fully qualified domain name of the [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)] host machine by running `hostname --all-fqdns` on the [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)] host. The TCP port should be 1433 unless you have configured [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)] to use a different port number.
6464

6565
```PowerShell
66-
setspn -A MSSQLSvc/**<fully qualified domain name of host machine>**:**<tcp port>** mssql
67-
setspn -A MSSQLSvc/**<netbios name of the host machine>**:**<tcp port>** mssql
66+
setspn -A MSSQLSvc/<fully qualified domain name of host machine>:<tcp port> mssql
67+
setspn -A MSSQLSvc/<netbios name of the host machine>:<tcp port> mssql
6868
```
6969

7070
> [!NOTE]
@@ -90,11 +90,11 @@ Configuring AD authentication for SQL Server on Linux requires an AD account (MS
9090
```bash
9191
kinit user@CONTOSO.COM
9292
kvno user@CONTOSO.COM
93-
kvno MSSQLSvc/**<fully qualified domain name of host machine>**:**<tcp port>**@CONTOSO.COM
93+
kvno MSSQLSvc/<fully qualified domain name of host machine>:<tcp port>@CONTOSO.COM
9494
```
9595

9696
> [!NOTE]
97-
> SPNs can take several minutes to propagate through your domain, especially if the domain is large. If you receive the error, `kvno: Server not found in Kerberos database while getting credentials for MSSQLSvc/**<fully qualified domain name of host machine>**:**<tcp port>**@CONTOSO.COM`, please wait a few minutes and try again.</br></br> The above commands will only work if the server has been joined to an AD domain, which was covered in the previous section.
97+
> SPNs can take several minutes to propagate through your domain, especially if the domain is large. If you receive the error, `kvno: Server not found in Kerberos database while getting credentials for MSSQLSvc/<fully qualified domain name of host machine>:<tcp port>@CONTOSO.COM`, please wait a few minutes and try again.</br></br> The above commands will only work if the server has been joined to an AD domain, which was covered in the previous section.
9898
9999
1. Using [**ktpass**](/windows-server/administration/windows-commands/ktpass), add keytab entries for each SPN using the following commands on a Windows machine Command Prompt:
100100

0 commit comments

Comments
 (0)