You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/linux/quickstart-install-connect-red-hat.md
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,17 @@ For other system requirements, see [System requirements for SQL Server on Linux]
47
47
## <aid="install"></a>Install SQL Server
48
48
49
49
> [!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.
51
61
>
52
62
> If you are using RHEL 7, change the path below to `/rhel/7` instead of `/rhel/8`.
53
63
@@ -107,13 +117,15 @@ At this point, SQL Server is running on your RHEL machine and is ready to use!
107
117
108
118
> [!NOTE]
109
119
> 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
+
> ```
117
129
> 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.
118
130
>
119
131
> If you are using RHEL 7, change the path below to `/rhel/7` instead of `/rhel/8`.
0 commit comments