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
@@ -142,9 +142,9 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
142
142
```
143
143
144
144
> [!TIP]
145
-
> This quickstart uses the SQL Server 2019 CTP 2.0 Docker image. If you want to run the SQL Server 2017 image, see the [SQL Server 2017 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-2017#pullandrun2017).
145
+
> This quickstart uses the SQL Server 2019 preview Docker image. If you want to run the SQL Server 2017 image, see the [SQL Server 2017 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-2017#pullandrun2017).
146
146
147
-
The previous command pulls the latest SQL Server 2019 CTP 2.0 container image based on Ubuntu. To instead use container images based on RedHat, see [Run RHEL-based container images](sql-server-linux-configure-docker.md#rhel). If you want to pull a specific image, you add a colon and the tag name (for example, `mcr.microsoft.com/mssql/server:2017-GA`). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/r/microsoft/mssql-server-linux/tags/).
147
+
The previous command pulls the latest SQL Server 2019 preview container image based on Ubuntu. To instead use container images based on RedHat, see [Run RHEL-based container images](sql-server-linux-configure-docker.md#rhel). If you want to pull a specific image, you add a colon and the tag name (for example, `mcr.microsoft.com/mssql/server:2017-GA`). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/r/microsoft/mssql-server-linux/tags/).
148
148
149
149
For the bash commands in this article, `sudo` is used. On MacOS, `sudo` might not be required. On Linux, if you do not want to use `sudo` to run Docker, you can configure a **docker** group and add users to that group. For more information, see [Post-installation steps for Linux](https://docs.docker.com/install/linux/linux-postinstall/).
150
150
@@ -166,7 +166,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
166
166
> The password should follow the SQL Server default password policy, otherwise the container can not setup SQL server and will stop working. By default, the password must be at least 8 characters long and contain characters from three of the following four sets: Uppercase letters, Lowercase letters, Base 10 digits, and Symbols. You can examine the error log by executing the [docker logs](https://docs.docker.com/engine/reference/commandline/logs/) command.
167
167
168
168
> [!NOTE]
169
-
> By default, this creates a container with the Developer edition of SQL Server 2019 CTP 2.0.
169
+
> By default, this creates a container with the Developer edition of SQL Server 2019 preview.
170
170
171
171
The following table provides a description of the parameters in the previous `docker run` example:
172
172
@@ -176,7 +176,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
176
176
|**-e 'SA_PASSWORD=\<YourStrong!Passw0rd\>'**| Specify your own strong password that is at least 8 characters and meets the [SQL Server password requirements](../relational-databases/security/password-policy.md). Required setting for the SQL Server image. |
177
177
|**-p 1433:1433**| Map a TCP port on the host environment (first value) with a TCP port in the container (second value). In this example, SQL Server is listening on TCP 1433 in the container and this is exposed to the port, 1433, on the host. |
178
178
|**--name sql1**| Specify a custom name for the container rather than a randomly generated one. If you run more than one container, you cannot reuse this same name. |
179
-
|**mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu**| The SQL Server 2019 CTP 2.0 Linux container image. |
179
+
|**mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu**| The SQL Server 2019 preview Linux container image. |
180
180
181
181
3. To view your Docker containers, use the `docker ps` command.
In this quickstart, you install SQL Server 2019 CTP 2.0 on Red Hat Enterprise Linux (RHEL) 7.3+. You then connect with **sqlcmd** to create your first database and run queries.
27
+
In this quickstart, you install SQL Server 2019 preview on Red Hat Enterprise Linux (RHEL) 7.3+. You then connect with **sqlcmd** to create your first database and run queries.
28
28
29
29
::: moniker-end
30
30
@@ -136,7 +136,7 @@ To configure SQL Server on RHEL, run the following commands in a terminal to ins
136
136
sudo firewall-cmd --reload
137
137
```
138
138
139
-
At this point, SQL Server 2019 CTP 2.0 is running on your RHEL machine and is ready to use!
139
+
At this point, SQL Server 2019 preview is running on your RHEL machine and is ready to use!
In this quickstart, you install SQL Server 2017 or SQL Server 2019 CTP 2.0 on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
21
+
In this quickstart, you install SQL Server 2017 or SQL Server 2019 preview on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
In this quickstart, you install SQL Server 2019 CTP 2.0 on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
27
+
In this quickstart, you install SQL Server 2019 preview on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
28
28
29
29
::: moniker-end
30
30
@@ -149,7 +149,7 @@ To configure SQL Server on SLES, run the following commands in a terminal to ins
149
149
FW_SERVICES_EXT_TCP="1433"
150
150
```
151
151
152
-
At this point, SQL Server 2019 CTP 2.0 is running on your SLES machine and is ready to use!
152
+
At this point, SQL Server 2019 preview is running on your SLES machine and is ready to use!
In this quickstart, you install SQL Server 2017 or SQL Server 2019 CTP 2.0 on Ubuntu 16.04. You then connect with **sqlcmd** to create your first database and run queries.
21
+
In this quickstart, you install SQL Server 2017 or SQL Server 2019 preview on Ubuntu 16.04. You then connect with **sqlcmd** to create your first database and run queries.
In this quickstart, you install SQL Server 2019 CTP 2.0 on Ubuntu 16.04. You then connect with **sqlcmd** to create your first database and run queries.
27
+
In this quickstart, you install SQL Server 2019 preview on Ubuntu 16.04. You then connect with **sqlcmd** to create your first database and run queries.
28
28
29
29
::: moniker-end
30
30
@@ -141,7 +141,7 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
141
141
142
142
6. If you plan to connect remotely, you might also need to open the SQL Server TCP port (default 1433) on your firewall.
143
143
144
-
At this point, SQL Server 2019 CTP 2.0 is running on your Ubuntu machine and is ready to use!
144
+
At this point, SQL Server 2019 preview is running on your Ubuntu machine and is ready to use!
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-change-repo.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
@@ -17,7 +17,7 @@ ms.technology: linux
17
17
This article describes how to configure the correct repository for SQL Server 2017 and SQL Server 2019 installations and upgrades on Linux.
18
18
19
19
> [!TIP]
20
-
> SQL Server 2019 CTP 2.0 is now available! To try it, use this article to configure the new **mssql-server-preview** repository. Then install using the instructions in the [installation guide](sql-server-linux-setup.md).
20
+
> SQL Server 2019 preview is now available! To try it, use this article to configure the new **mssql-server-preview** repository. Then install using the instructions in the [installation guide](sql-server-linux-setup.md).
21
21
22
22
## <aid="repositories"></a> Repositories
23
23
@@ -26,7 +26,7 @@ When you install SQL Server on Linux, you must configure a Microsoft repository.
26
26
| Repository | Name | Description |
27
27
|---|---|---|
28
28
|**Preview (2017)**|**mssql-server**| SQL Server 2017 CTP and RC repository (discontinued). |
29
-
|**Preview (2019)**|**mssql-server-preview**| SQL Server 2019 CTP and RC repository. |
29
+
|**Preview (2019)**|**mssql-server-preview**| SQL Server 2019 preview and RC repository. |
30
30
|**CU**|**mssql-server-2017**| SQL Server 2017 Cumulative Update (CU) repository. |
31
31
|**GDR**|**mssql-server-2017-gdr**| SQL Server 2017 GDR repository for critical updates only. |
Copy file name to clipboardExpand all lines: docs/linux/sql-server-linux-configure-docker.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Configuration options for SQL Server on Docker | Microsoft Docs
3
-
description: Explore different ways of using and interacting with SQL Server 2017 and 2019 CTP 2.0 container images in Docker. This includes persisting data, copying files, and troubleshooting.
3
+
description: Explore different ways of using and interacting with SQL Server 2017 and 2019 preview container images in Docker. This includes persisting data, copying files, and troubleshooting.
4
4
author: rothja
5
5
ms.author: jroth
6
6
manager: craigg
@@ -23,10 +23,10 @@ This article explains how to configure and use the [mssql-server-linux container
23
23
24
24
## Pull and run the container image
25
25
26
-
To pull and run the Docker container images for SQL Server 2017 and SQL Server 2019 CTP 2.0, follow the prerequisites and steps in the following quickstart:
26
+
To pull and run the Docker container images for SQL Server 2017 and SQL Server 2019 preview, follow the prerequisites and steps in the following quickstart:
27
27
28
28
-[Run the SQL Server 2017 container image with Docker](quickstart-install-connect-docker.md?view=sql-server-2017)
29
-
-[Run the SQL Server 2019 CTP 2.0 container image with Docker](quickstart-install-connect-docker.md?view=sql-server-ver15)
29
+
-[Run the SQL Server 2019 preview container image with Docker](quickstart-install-connect-docker.md?view=sql-server-ver15)
30
30
31
31
This configuration article provides additional usage scenarios in the following sections.
32
32
@@ -35,9 +35,9 @@ This configuration article provides additional usage scenarios in the following
35
35
36
36
## <aid="rhel"></a> Run RHEL-based container images
37
37
38
-
All of the documentation on SQL Server Linux container images point to Ubuntu-based containers. Beginning with SQL Server 2019 CTP 2.0, you can use containers based on Red Hat Enterprise Linux (RHEL). Change the container repository from **mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu** to **mcr.microsoft.com/mssql/rhel/server:vNext-CTP2.0** in all of your docker commands.
38
+
All of the documentation on SQL Server Linux container images point to Ubuntu-based containers. Beginning with SQL Server 2019 preview, you can use containers based on Red Hat Enterprise Linux (RHEL). Change the container repository from **mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu** to **mcr.microsoft.com/mssql/rhel/server:vNext-CTP2.0** in all of your docker commands.
39
39
40
-
For example, the following command pulls the latest SQL Server 2019 CTP 2.0 container that uses RHEL:
40
+
For example, the following command pulls the latest SQL Server 2019 preview container that uses RHEL:
Starting with SQL Server 2017 CTP 2.0, the [SQL Server command-line tools](sql-server-linux-setup-tools.md) are included in the container image. If you attach to the image with an interactive command-prompt, you can run the tools locally.
131
+
Starting with SQL Server 2017 preview, the [SQL Server command-line tools](sql-server-linux-setup-tools.md) are included in the container image. If you attach to the image with an interactive command-prompt, you can run the tools locally.
132
132
133
133
1. Use the `docker exec -it`command to start an interactive bash shell inside your running container. In the following example `e69e056c702d` is the container ID.
This article describes how to configure the Microsoft Distributed Transaction Coordinator (MSTDC) on Linux. MSDTC support on Linux was introduced in SQL Server 2019 CTP 2.0.
18
+
This article describes how to configure the Microsoft Distributed Transaction Coordinator (MSTDC) on Linux. MSDTC support on Linux was introduced in SQL Server 2019 preview.
19
19
20
20
## Overview
21
21
@@ -38,7 +38,7 @@ The following MSDTC configurations are supported:
38
38
- XA Distributed transactions against SQL Server on Linux using JDBC providers.
39
39
- Distributed transactions on Linked server.
40
40
41
-
For limitations and known issues for MSDTC in CTP 2.0, see [Release notes for SQL Server 2019 CTP on Linux](sql-server-linux-release-notes-2019.md#msdtc).
41
+
For limitations and known issues for MSDTC in preview, see [Release notes for SQL Server 2019 preview on Linux](sql-server-linux-release-notes-2019.md#msdtc).
This article describes how to configure the persistent memory (PMEM) for SQL Server on Linux. PMEM support on Linux was introduced in SQL Server 2019 CTP 2.0.
18
+
This article describes how to configure the persistent memory (PMEM) for SQL Server on Linux. PMEM support on Linux was introduced in SQL Server 2019 preview.
SQL Server 2019 CTP 2.0 runs on Linux. It’s the same SQL Server database engine, with many similar features and services regardless of your operating system. To find out more about this release, see [What's new in SQL Server 2019 CTP 2.0 for Linux](../sql-server/what-s-new-in-sql-server-ver15.md#sqllinux).
23
+
SQL Server 2019 preview runs on Linux. It’s the same SQL Server database engine, with many similar features and services regardless of your operating system. To find out more about this release, see [What's new in SQL Server 2019 preview for Linux](../sql-server/what-s-new-in-sql-server-ver15.md#sqllinux).
24
24
::: moniker-end
25
25
26
26
::: moniker range="= sql-server-2017"
27
27
> [!TIP]
28
-
> [SQL Server 2019 CTP 2.0](sql-server-linux-overview.md?view=sql-server-ver15) has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 CTP 2.0 for Linux](../sql-server/what-s-new-in-sql-server-ver15.md?view=sql-server-ver15#sqllinux).
28
+
> [SQL Server 2019 preview](sql-server-linux-overview.md?view=sql-server-ver15) has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 preview for Linux](../sql-server/what-s-new-in-sql-server-ver15.md?view=sql-server-ver15#sqllinux).
29
29
::: moniker-end
30
30
31
31
::: moniker range="= sql-server-linux-2017"
32
32
> [!TIP]
33
-
> [SQL Server 2019 CTP 2.0](sql-server-linux-overview.md?view=sql-server-linux-ver15) has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 CTP 2.0 for Linux](../sql-server/what-s-new-in-sql-server-ver15.md?view=sql-server-linux-ver15#sqllinux).
33
+
> [SQL Server 2019 preview](sql-server-linux-overview.md?view=sql-server-linux-ver15) has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 preview for Linux](../sql-server/what-s-new-in-sql-server-ver15.md?view=sql-server-linux-ver15#sqllinux).
34
34
::: moniker-end
35
35
36
36
::: moniker range="= sqlallproducts-allversions"
37
37
> [!TIP]
38
-
> SQL Server 2019 CTP 2.0 has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 CTP 2.0 for Linux](../sql-server/what-s-new-in-sql-server-ver15.md#sqllinux).
38
+
> SQL Server 2019 preview has been released! To find out what's new for Linux in the latest release, see [What's new in SQL Server 2019 preview for Linux](../sql-server/what-s-new-in-sql-server-ver15.md#sqllinux).
0 commit comments