Skip to content

Commit 19ca900

Browse files
committed
Updating CTP 2.0 references in Linux docs
1 parent 2d4eed6 commit 19ca900

14 files changed

Lines changed: 47 additions & 41 deletions

docs/linux/quickstart-install-connect-docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
131131

132132
## <a id="pullandrun2019"></a> Pull and run the container image
133133

134-
1. Pull the SQL Server 2019 CTP 2.0 Linux container image from Docker Hub.
134+
1. Pull the SQL Server 2019 preview Linux container image from Docker Hub.
135135

136136
```bash
137137
sudo docker pull mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu
@@ -142,9 +142,9 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
142142
```
143143

144144
> [!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).
146146
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/).
148148

149149
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/).
150150

@@ -166,7 +166,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
166166
> 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.
167167
168168
> [!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.
170170
171171
The following table provides a description of the parameters in the previous `docker run` example:
172172

@@ -176,7 +176,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
176176
| **-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. |
177177
| **-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. |
178178
| **--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. |
180180

181181
3. To view your Docker containers, use the `docker ps` command.
182182

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In this quickstart, you install SQL Server 2017 or SQL Server 2019 on Red Hat En
2424
<!--SQL Server 2019 on Linux-->
2525
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
2626

27-
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.
2828

2929
::: moniker-end
3030

@@ -136,7 +136,7 @@ To configure SQL Server on RHEL, run the following commands in a terminal to ins
136136
sudo firewall-cmd --reload
137137
```
138138

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!
140140

141141
::: moniker-end
142142

docs/linux/quickstart-install-connect-suse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ ms.assetid: 31ddfb80-f75c-4f51-8540-de6213cb68b8
1818
<!--SQL Server 2017 on Linux-->
1919
::: moniker range="= sql-server-linux-2017 || = sql-server-2017"
2020

21-
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.
2222

2323
::: moniker-end
2424
<!--SQL Server 2019 on Linux-->
2525
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
2626

27-
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.
2828

2929
::: moniker-end
3030

@@ -149,7 +149,7 @@ To configure SQL Server on SLES, run the following commands in a terminal to ins
149149
FW_SERVICES_EXT_TCP="1433"
150150
```
151151

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!
153153

154154
::: moniker-end
155155

docs/linux/quickstart-install-connect-ubuntu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ ms.assetid: 31c8c92e-12fe-4728-9b95-4bc028250d85
1818
<!--SQL Server 2017 on Linux-->
1919
::: moniker range="= sql-server-linux-2017 || = sql-server-2017"
2020

21-
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.
2222

2323
::: moniker-end
2424
<!--SQL Server 2019 on Linux-->
2525
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
2626

27-
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.
2828

2929
::: moniker-end
3030

@@ -141,7 +141,7 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
141141

142142
6. If you plan to connect remotely, you might also need to open the SQL Server TCP port (default 1433) on your firewall.
143143

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!
145145

146146
::: moniker-end
147147

docs/linux/sql-server-linux-change-repo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.technology: linux
1717
This article describes how to configure the correct repository for SQL Server 2017 and SQL Server 2019 installations and upgrades on Linux.
1818

1919
> [!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).
2121
2222
## <a id="repositories"></a> Repositories
2323

@@ -26,7 +26,7 @@ When you install SQL Server on Linux, you must configure a Microsoft repository.
2626
| Repository | Name | Description |
2727
|---|---|---|
2828
| **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. |
3030
| **CU** | **mssql-server-2017** | SQL Server 2017 Cumulative Update (CU) repository. |
3131
| **GDR** | **mssql-server-2017-gdr** | SQL Server 2017 GDR repository for critical updates only. |
3232

docs/linux/sql-server-linux-configure-docker.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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.
44
author: rothja
55
ms.author: jroth
66
manager: craigg
@@ -23,10 +23,10 @@ This article explains how to configure and use the [mssql-server-linux container
2323
2424
## Pull and run the container image
2525

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:
2727

2828
- [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)
3030

3131
This configuration article provides additional usage scenarios in the following sections.
3232

@@ -35,9 +35,9 @@ This configuration article provides additional usage scenarios in the following
3535

3636
## <a id="rhel"></a> Run RHEL-based container images
3737

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.
3939

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:
4141

4242
```bash
4343
sudo docker pull mcr.microsoft.com/mssql/rhel/server:vNext-CTP2.0
@@ -128,7 +128,7 @@ sqlcmd -S 10.3.2.4,1400 -U SA -P "<YourPassword>"
128128

129129
### Tools inside the container
130130

131-
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.
132132

133133
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.
134134

@@ -172,7 +172,7 @@ docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=<YourStrong!Passw0rd>" -p 14
172172
<!--SQL Server 2019 on Linux-->
173173
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
174174
175-
The following example creates two SQL Server 2019 CTP 2.0 containers and maps them to ports **1401** and **1402** on the host machine.
175+
The following example creates two SQL Server 2019 preview containers and maps them to ports **1401** and **1402** on the host machine.
176176
177177
```bash
178178
docker run -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=<YourStrong!Passw0rd>' -p 1401:1433 -d mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu

docs/linux/sql-server-linux-configure-environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can use several different environment variables to configure SQL Server 2017
2424
<!--SQL Server 2019 on Linux-->
2525
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
2626

27-
You can use several different environment variables to configure SQL Server 2019 CTP 2.0 on Linux. These variables are used in two scenarios:
27+
You can use several different environment variables to configure SQL Server 2019 preview on Linux. These variables are used in two scenarios:
2828

2929
::: moniker-end
3030

docs/linux/sql-server-linux-configure-msdtc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: ">= sql-server-ver15 || = sqlallproducts-allversions"
1515

1616
[!INCLUDE[appliesto-ss-xxxx-xxxx-xxx-md-linuxonly](../includes/appliesto-ss-xxxx-xxxx-xxx-md-linuxonly.md)]
1717

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 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.
1919

2020
## Overview
2121

@@ -38,7 +38,7 @@ The following MSDTC configurations are supported:
3838
- XA Distributed transactions against SQL Server on Linux using JDBC providers.
3939
- Distributed transactions on Linked server.
4040

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).
4242

4343
## MSDTC configuration steps
4444

docs/linux/sql-server-linux-configure-pmem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: ">= sql-server-ver15 || = sqlallproducts-allversions"
1515

1616
[!INCLUDE[appliesto-ss-xxxx-xxxx-xxx-md-linuxonly](../includes/appliesto-ss-xxxx-xxxx-xxx-md-linuxonly.md)]
1717

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 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.
1919

2020
## Overview
2121

docs/linux/sql-server-linux-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ Starting with SQL Server 2017, SQL Server runs on Linux. It’s the same SQL Ser
2020
::: moniker-end
2121

2222
::: moniker range=">= sql-server-ver15 || >= sql-server-linux-ver15"
23-
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).
2424
::: moniker-end
2525

2626
::: moniker range="= sql-server-2017"
2727
> [!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).
2929
::: moniker-end
3030

3131
::: moniker range="= sql-server-linux-2017"
3232
> [!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).
3434
::: moniker-end
3535

3636
::: moniker range="= sqlallproducts-allversions"
3737
> [!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).
3939
::: moniker-end
4040

4141
## Install

0 commit comments

Comments
 (0)