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/includes/linux-supported-platfoms-2019.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ author: VanMSFT
3
3
ms.prod: sql
4
4
ms.technology: linux
5
5
ms.topic: include
6
-
ms.date: 06/22/2020
6
+
ms.date: 04/07/2021
7
7
ms.author: vanto
8
8
---
9
9
@@ -13,7 +13,7 @@ ms.author: vanto
13
13
|-----|-----|-----|-----|
14
14
| Red Hat Enterprise Linux 7.3 - 7.8, or 8.0 - 8.3 Server | XFS or EXT4 |[Installation guide](../linux/quickstart-install-connect-red-hat.md)|[Get RHEL 8.0](https://access.redhat.com/products/red-hat-enterprise-linux/evaluation)|
15
15
| SUSE Enterprise Linux Server v12 SP2 - SP5 | XFS or EXT4 |[Installation guide](../linux/quickstart-install-connect-suse.md)|[Get SLES v12](https://www.suse.com/products/server)|
| Docker Engine 1.8+ on Windows, Mac, or Linux | N/A |[Installation guide](../linux/quickstart-install-connect-docker.md)|[Get Docker](https://www.docker.com/get-started)|
> Starting with SQL Server 2019 CU3, Ubuntu 18.04 is supported.
37
+
> - Starting with SQL Server 2019 CU3, Ubuntu 18.04 is supported.
38
+
> - Starting with SQL Server 2019 CU10, Ubuntu 20.04 is supported.
38
39
39
40
In this quickstart, you use Docker to pull and run the SQL Server 2019 container image, [mssql-server](https://hub.docker.com/r/microsoft/mssql-server). Then connect with **sqlcmd** to create your first database and run queries.
40
41
@@ -43,7 +44,7 @@ In this quickstart, you use Docker to pull and run the SQL Server 2019 container
43
44
44
45
::: moniker-end
45
46
46
-
This image consists of SQL Server running on Linux based on Ubuntu 18.04. It can be used with the Docker Engine 1.8+ on Linux or on Docker for Mac/Windows. This quickstart specifically focuses on using the SQL Server on **Linux** image. The Windows image is not covered, but you can learn more about it on the [mssql-server-windows-developer Docker Hub page](https://hub.docker.com/r/microsoft/mssql-server-windows-developer/).
47
+
This image consists of SQL Server running on Linux based on Ubuntu 20.04. It can be used with the Docker Engine 1.8+ on Linux or on Docker for Mac/Windows. This quickstart specifically focuses on using the SQL Server on **Linux** image. The Windows image is not covered, but you can learn more about it on the [mssql-server-windows-developer Docker Hub page](https://hub.docker.com/r/microsoft/mssql-server-windows-developer/).
In this quickstart, you install SQL Server 2019 on Ubuntu 16.04/18.04. You then connect with **sqlcmd** to create your first database and run queries.
30
+
In this quickstart, you install SQL Server 2019 on Ubuntu 16.04, 18.04, or 20.04. You then connect with **sqlcmd** to create your first database and run queries.
31
+
32
+
> [!NOTE]
33
+
> Ubuntu 20.04 is supported starting with SQL Server 2019 CU10.
31
34
32
35
> [!TIP]
33
36
> This tutorial requires user input and an internet connection. If you are interested in the unattended or offline installation procedures, see [Installation guidance for SQL Server on Linux](sql-server-linux-setup.md). For a list of supported platforms, see our [Release notes](sql-server-linux-release-notes-2019.md).
@@ -58,9 +61,9 @@ For other system requirements, see [System requirements for SQL Server on Linux]
You must have an Ubuntu 16.04or 18.04 machine with **at least 2 GB** of memory.
64
+
You must have an Ubuntu 16.04, 18.04, or 20.04 machine with **at least 2 GB** of memory.
62
65
63
-
To install Ubuntu 18.04 on your own machine, go to <http://releases.ubuntu.com/bionic/>. You can also create Ubuntu virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](/azure/virtual-machines/linux/tutorial-manage-vm).
66
+
To install Ubuntu 20.04 on your own machine, go to <https://releases.ubuntu.com/20.04/>. You can also create Ubuntu virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](/azure/virtual-machines/linux/tutorial-manage-vm).
64
67
65
68
> [!NOTE]
66
69
> At this time, the [Windows Subsystem for Linux](/windows/wsl/about) for Windows 10 is not supported as an installation target.
@@ -151,7 +154,7 @@ At this point, SQL Server is running on your Ubuntu machine and is ready to use!
151
154
## <aid="install"></a>Install SQL Server
152
155
153
156
> [!NOTE]
154
-
> The following commands for SQL Server 2019 points to the Ubuntu 18.04 repository. If you are using Ubuntu 16.04, change the path below to `/ubuntu/16.04/` instead of `/ubuntu/18.04/`.
157
+
> The following commands for SQL Server 2019 points to the Ubuntu 20.04 repository. If you are using Ubuntu 18.04 or 16.04, change the path below to `/ubuntu/18.04/` or `/ubuntu/16.04/` instead of `/ubuntu/20.04/`.
155
158
156
159
To configure SQL Server on Ubuntu, run the following commands in a terminal to install the **mssql-server** package.
157
160
@@ -175,6 +178,12 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
3. Run the following commands to install SQL Server:
179
188
180
189
```bash
@@ -229,6 +238,12 @@ Use the following steps to install the **mssql-tools** on Ubuntu.
229
238
curl https://packages.microsoft.com/config/ubuntu/18.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
230
239
```
231
240
241
+
For Ubuntu 20.04:
242
+
243
+
```bash
244
+
curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
245
+
```
246
+
232
247
1. Update the sources list and run the installation command with the unixODBC developer package. For more information, see [Install the Microsoft ODBC driver for SQL Server (Linux)](../connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server.md).
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-change-repo.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,10 @@ If necessary, remove the old repository. Use one of the following commands based
152
152
If necessary, remove the old repository. Use one of the following commands based on the type of previously configured repository.
153
153
154
154
> [!NOTE]
155
-
> Starting with SQL Server 2019 CU3 and SQL Server 2017 CU20, Ubuntu 18.04 is supported. If you are using Ubuntu 16.04, change the path below to `/ubuntu/16.04` instead of `/ubuntu/18.04`, and use the correct [distribution code name](https://releases.ubuntu.com/).
155
+
>
156
+
> - Starting with SQL Server 2019 CU10, Ubuntu 20.04 is supported.
157
+
> - Starting with SQL Server 2019 CU3 and SQL Server 2017 CU20, Ubuntu 18.04 is supported.
158
+
> - If you are using Ubuntu 16.04, change the path below to `/ubuntu/16.04` instead of `/ubuntu/18.04`, and use the correct [distribution code name](https://releases.ubuntu.com/).
156
159
157
160
| Repository | Command to remove |
158
161
|---|---|
@@ -204,9 +207,10 @@ Configure the new repository to use for SQL Server installations and upgrades. U
204
207
Configure the new repository to use for SQL Server installations and upgrades.
205
208
206
209
> [!NOTE]
207
-
> Starting with SQL Server 2019 CU3 and SQL Server 2017 CU20, Ubuntu 18.04 is supported. The following commands points to the Ubuntu 18.04 repository.
208
210
>
209
-
> If you are using Ubuntu 16.04, change the path below to `/ubuntu/16.04` instead of `/ubuntu/18.04`.
211
+
> - Starting with SQL Server 2019 CU10, Ubuntu 20.04 is supported
212
+
> - Starting with SQL Server 2019 CU3 and SQL Server 2017 CU20, Ubuntu 18.04 is supported.
213
+
> - The following commands points to the Ubuntu 18.04 repository. If you are using Ubuntu 16.04, change the path below to `/ubuntu/16.04` instead of `/ubuntu/18.04`.
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-docker-container-deployment.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,10 @@ Packages
204
204
## <a id="tags"></a> Run a specific SQL Server container image
205
205
206
206
> [!NOTE]
207
-
> Starting with SQL Server 2019 CU3, Ubuntu 18.04 is supported. You can retrieve a list of all available tags for mssql/server at <https://mcr.microsoft.com/v2/mssql/server/tags/list>.
207
+
>
208
+
> - Starting with SQL Server 2019 CU3, Ubuntu 18.04 is supported.
209
+
> - Starting with SQL Server 2019 CU10, Ubuntu 20.04 is supported.
210
+
> - You can retrieve a list of all available tags for mssql/server at <https://mcr.microsoft.com/v2/mssql/server/tags/list>.
208
211
209
212
There are scenarios where you might not want to use the latest SQL Server container image. To run a specific SQL Server container image, use the following steps:
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-release-notes-2019.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,13 @@ For manual or offline package installations, you can download the RPM and Debian
68
68
> [!NOTE]
69
69
> Starting with CU1, the offline package installation links for Red Hat are pointing to RHEL 8 packages. If you are looking for RHEL 7 packages, refer to the download path <https://packages.microsoft.com/rhel/7/mssql-server-2019/>
70
70
>
71
-
> **Ubuntu 18.04** is now supported on SQL Server 2019 starting with CU3. The offline package installation links for Ubuntu are pointing to Ubuntu 18.04 packages. If you are looking for Ubuntu 16.04 packages, refer to the download path <https://packages.microsoft.com/ubuntu/16.04/mssql-server-2019/pool/main/m/>
71
+
> **Ubuntu 20.04** is now supported on SQL Server 2019 starting with CU10. The offline package installation links for Ubuntu are pointing to Ubuntu 20.04 packages. If you are looking for Ubuntu 18.04 packages, refer to the download path <https://packages.microsoft.com/ubuntu/18.04/mssql-server-2019/pool/main/m/>
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-setup-tools.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ titleSuffix: SQL Server
4
4
description: Learn how to install the SQL Server command-line tools, Microsoft ODBC drivers, and their dependencies on Linux.
5
5
author: VanMSFT
6
6
ms.author: vanto
7
-
ms.date: 06/30/2020
7
+
ms.date: 04/07/2021
8
8
ms.topic: conceptual
9
9
ms.prod: sql
10
10
ms.custom: "sqlfreshmay19"
@@ -91,7 +91,10 @@ Use the following steps to install the **mssql-tools** on Red Hat Enterprise Lin
91
91
Use the following steps to install the **mssql-tools** on Ubuntu.
92
92
93
93
> [!NOTE]
94
-
> Ubuntu 18.04 is supported starting with SQL Server 2019 CU3. If you are using Ubuntu 18.04, change the repository path from `/ubuntu/16.04` to `/ubuntu/18.04`.
94
+
>
95
+
> - Ubuntu 18.04 is supported starting with SQL Server 2019 CU3.
96
+
> - Ubuntu 20.04 is supported starting with SQL Server 2019 CU10.
97
+
> - If you are using Ubuntu 20.04, change the repository path from `/ubuntu/16.04` to `/ubuntu/20.04`.
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-whats-new-2019.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: What's New for SQL Server 2019 on Linux
3
3
description: This article highlights what's new for SQL Server 2019 on Linux.
4
4
author: VanMSFT
5
5
ms.author: vanto
6
-
ms.date: 03/12/2020
6
+
ms.date: 04/07/2021
7
7
ms.topic: conceptual
8
8
ms.prod: sql
9
9
ms.technology: linux
@@ -15,9 +15,11 @@ ms.technology: linux
15
15
16
16
This article describes the major features and services available for SQL Server 2019 running on Linux. For package downloads and known issues, see the [Release notes](sql-server-linux-release-notes-2019.md).
17
17
18
-
## Ubuntu 18.04 supported
18
+
## Ubuntu 18.04 and 20.04 supported
19
19
20
-
Starting with SQL Server 2019 CU3, Ubuntu 18.04 is now supported. Check out our Quickstart on [Installing SQL Server and creating a database on Ubuntu](quickstart-install-connect-ubuntu.md?view=sql-server-linux-ver15&preserve-view=true).
20
+
- Starting with SQL Server 2019 CU3, Ubuntu 18.04 is now supported.
21
+
- Starting with SQL Server 2019 CU10, Ubuntu 20.04 is now supported.
22
+
- Check out our Quickstart on [Installing SQL Server and creating a database on Ubuntu](quickstart-install-connect-ubuntu.md?view=sql-server-linux-ver15&preserve-view=true).
0 commit comments