Skip to content

Commit cfdb7ba

Browse files
authored
Edits
1 parent 0ef8f9c commit cfdb7ba

1 file changed

Lines changed: 20 additions & 8 deletions

File tree

docs/linux/quickstart-install-connect-red-hat.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,17 @@ For other system requirements, see [System requirements for SQL Server on Linux]
4747
## <a id="install"></a>Install SQL Server
4848

4949
> [!NOTE]
50-
> RHEL 8 is supported for SQL Server 2017 starting with CU20. The following commands for SQL Server 2017 points to the RHEL 8 repository. RHEL 8 does not come preinstalled with python2, which is required by SQL Server. For more information, see the following blog on installing python2 and configuring it as the default interpreter: https://www.redhat.com/en/blog/installing-microsoft-sql-server-red-hat-enterprise-linux-8-beta.
50+
> RHEL 8 is supported for SQL Server 2017 starting with CU20. The following commands for SQL Server 2017 points to the RHEL 8 repository. RHEL 8 does not come preinstalled with python2, which is required by SQL Server. Before you begin the SQL Server install steps, execute the command and verify that python2 is selected as the interpreter:
51+
>
52+
> ```
53+
> sudo alternatives --config python
54+
> # If not configured, install python2 and openssl10 using the following commands:
55+
> sudo yum install python2
56+
> sudo yum install compat-openssl10
57+
> # Configure python2 as the default interpreter using this command:
58+
> sudo alternatives --config python
59+
> ```
60+
> For more information, see the following blog on installing python2 and configuring it as the default interpreter: https://www.redhat.com/en/blog/installing-microsoft-sql-server-red-hat-enterprise-linux-8-beta.
5161
>
5262
> If you are using RHEL 7, change the path below to `/rhel/7` instead of `/rhel/8`.
5363
@@ -107,13 +117,15 @@ At this point, SQL Server is running on your RHEL machine and is ready to use!
107117

108118
> [!NOTE]
109119
> The following commands for SQL Server 2019 points to the RHEL 8 repository. RHEL 8 does not come preinstalled with python2, which is required by SQL Server. Before you begin the SQL Server install steps, execute the command and verify that python2 is selected as the interpreter:
110-
> **sudo alternatives --config python**.
111-
> If not configured, install python2 and openssl10 using the following commands:
112-
> **sudo yum install python2** and
113-
> **sudo yum install compat-openssl10**.
114-
> Configure python2 as the default interpreter using this command:
115-
> **sudo alternatives --config python**
116-
>
120+
>
121+
> ```
122+
> sudo alternatives --config python
123+
> # If not configured, install python2 and openssl10 using the following commands:
124+
> sudo yum install python2
125+
> sudo yum install compat-openssl10
126+
> # Configure python2 as the default interpreter using this command:
127+
> sudo alternatives --config python
128+
> ```
117129
> For more information about these steps, see the following blog on installing python2 and configuring it as the default interpreter: https://www.redhat.com/en/blog/installing-microsoft-sql-server-red-hat-enterprise-linux-8-beta.
118130
>
119131
> If you are using RHEL 7, change the path below to `/rhel/7` instead of `/rhel/8`.

0 commit comments

Comments
 (0)