Skip to content

Commit 3d0e55d

Browse files
committed
Removing preview from 2019 reference
1 parent bb7fd4e commit 3d0e55d

11 files changed

Lines changed: 65 additions & 67 deletions

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ zone_pivot_groups: cs1-command-shell
2626
In this quickstart, you use Docker to pull and run the SQL Server 2017 container image, [mssql-server-linux](https://hub.docker.com/_/microsoft-mssql-server). Then connect with **sqlcmd** to create your first database and run queries.
2727

2828
> [!TIP]
29-
> If you want to try the SQL Server 2019 preview image, see the [SQL Server 2019 preview version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-ver15).
29+
> If you want to run SQL Server 2019 containers, see the [SQL Server 2019 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-ver15).
3030
3131
::: moniker-end
3232
<!--SQL Server 2019 on Linux-->
3333
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
3434

35-
In this quickstart, you use Docker to pull and run the SQL Server 2019 preview container image, [mssql-server](https://hub.docker.com/r/microsoft/mssql-server). Then connect with **sqlcmd** to create your first database and run queries.
35+
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.
3636

3737
> [!TIP]
38-
> This quickstart creates SQL Server 2019 preview containers. If you prefer to create SQL Server 2017 containers, see the [SQL Server 2017 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-2017).
38+
> This quickstart creates SQL Server 2019 containers. If you prefer to create SQL Server 2017 containers, see the [SQL Server 2017 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-2017).
3939
::: moniker-end
4040

4141
This image consists of SQL Server running on Linux based on Ubuntu 16.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/).
@@ -77,7 +77,7 @@ Before starting the following steps, make sure that you have selected your prefe
7777
::: zone-end
7878

7979
> [!TIP]
80-
> If you want to try the SQL Server 2019 preview image, see the [SQL Server 2019 preview version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-ver15#pullandrun2019).
80+
> If you want to run SQL Server 2019 containers, see the [SQL Server 2019 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-ver15#pullandrun2019).
8181
8282
The previous command pulls the latest SQL Server 2017 container image. 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-ubuntu`). To see all available images, see [the mssql-server Docker hub page](https://hub.docker.com/r/microsoft/mssql-server).
8383

@@ -175,7 +175,7 @@ Setting `-h` and `--name` to the same value is a good way to easily identify the
175175

176176
Before starting the following steps, make sure that you have selected your preferred shell (bash, PowerShell, or cmd) at the top of this article.
177177

178-
1. Pull the SQL Server 2019 preview Linux container image from Docker Hub.
178+
1. Pull the SQL Server 2019 Linux container image from Docker Hub.
179179

180180
::: zone pivot="cs1-bash"
181181
```bash
@@ -196,9 +196,9 @@ Before starting the following steps, make sure that you have selected your prefe
196196
::: zone-end
197197

198198
> [!TIP]
199-
> 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).
199+
> This quickstart uses the SQL Server 2019 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).
200200
201-
The previous command pulls the 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). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/_/microsoft-mssql-server).
201+
The previous command pulls the SQL Server 2019 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). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/_/microsoft-mssql-server).
202202

203203
::: zone pivot="cs1-bash"
204204
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/).
@@ -234,7 +234,7 @@ Before starting the following steps, make sure that you have selected your prefe
234234
> 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.
235235
236236
> [!NOTE]
237-
> By default, this creates a container with the Developer edition of SQL Server 2019 preview.
237+
> By default, this creates a container with the Developer edition of SQL Server 2019.
238238
239239
The following table provides a description of the parameters in the previous `docker run` example:
240240

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

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

26-
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.
26+
In this quickstart, you install SQL Server 2019 on Red Hat Enterprise Linux (RHEL) 7.3+. You then connect with **sqlcmd** to create your first database and run queries.
2727

2828
::: moniker-end
2929

@@ -54,10 +54,10 @@ To configure SQL Server on RHEL, run the following commands in a terminal to ins
5454
```
5555

5656
> [!TIP]
57-
> If you want to try SQL Server 2019 , you must instead register the **Preview (2019)** repository. Use the following command for SQL Server 2019 installations:
57+
> If you want to install SQL Server 2019 , you must instead register the SQL Server 2019 repository. Use the following command for SQL Server 2019 installations:
5858
>
5959
> ```bash
60-
> sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-preview.repo
60+
> sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2019.repo
6161
> ```
6262
6363
2. Run the following commands to install SQL Server:
@@ -101,10 +101,10 @@ At this point, SQL Server is running on your RHEL machine and is ready to use!
101101

102102
To configure SQL Server on RHEL, run the following commands in a terminal to install the **mssql-server** package:
103103

104-
1. Download the Microsoft SQL Server 2019 preview Red Hat repository configuration file:
104+
1. Download the Microsoft SQL Server 2019 Red Hat repository configuration file:
105105

106106
```bash
107-
sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-preview.repo
107+
sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2019.repo
108108
```
109109

110110
2. Run the following commands to install SQL Server:
@@ -135,7 +135,7 @@ To configure SQL Server on RHEL, run the following commands in a terminal to ins
135135
sudo firewall-cmd --reload
136136
```
137137

138-
At this point, SQL Server 2019 preview is running on your RHEL machine and is ready to use!
138+
At this point, SQL Server 2019 is running on your RHEL machine and is ready to use!
139139

140140
::: moniker-end
141141

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

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

20-
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.
20+
In this quickstart, you install SQL Server 2017 or SQL Server 2019 on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
2121

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

26-
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.
26+
In this quickstart, you install SQL Server 2019 on SUSE Linux Enterprise Server (SLES) v12 SP2. You then connect with **sqlcmd** to create your first database and run queries.
2727

2828
::: moniker-end
2929

@@ -57,10 +57,10 @@ To configure SQL Server on SLES, run the following commands in a terminal to ins
5757
```
5858

5959
> [!TIP]
60-
> If you want to try SQL Server 2019 , you must instead register the **Preview (2019)** repository. Use the following command for SQL Server 2019 installations:
60+
> If you want to install SQL Server 2019 , you must instead register the SQL Server 2019 repository. Use the following command for SQL Server 2019 installations:
6161
>
6262
> ```bash
63-
> sudo zypper addrepo -fc https://packages.microsoft.com/config/sles/12/mssql-server-preview.repo
63+
> sudo zypper addrepo -fc https://packages.microsoft.com/config/sles/12/mssql-server-2019.repo
6464
> ```
6565
6666
2. Refresh your repositories.
@@ -109,10 +109,10 @@ At this point, SQL Server is running on your SLES machine and is ready to use!
109109

110110
To configure SQL Server on SLES, run the following commands in a terminal to install the **mssql-server** package:
111111

112-
1. Download the Microsoft SQL Server 2019 preview SLES repository configuration file:
112+
1. Download the Microsoft SQL Server 2019 SLES repository configuration file:
113113

114114
```bash
115-
sudo zypper addrepo -fc https://packages.microsoft.com/config/sles/12/mssql-server-preview.repo
115+
sudo zypper addrepo -fc https://packages.microsoft.com/config/sles/12/mssql-server-2019.repo
116116
```
117117

118118
2. Refresh your repositories.
@@ -148,7 +148,7 @@ To configure SQL Server on SLES, run the following commands in a terminal to ins
148148
FW_SERVICES_EXT_TCP="1433"
149149
```
150150

151-
At this point, SQL Server 2019 preview is running on your SLES machine and is ready to use!
151+
At this point, SQL Server 2019 is running on your SLES machine and is ready to use!
152152

153153
::: moniker-end
154154

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

Lines changed: 7 additions & 7 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 preview 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 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 preview 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 on Ubuntu 16.04. You then connect with **sqlcmd** to create your first database and run queries.
2828

2929
::: moniker-end
3030

@@ -65,10 +65,10 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
6565
```
6666

6767
> [!TIP]
68-
> If you want to try SQL Server 2019 , you must instead register the **Preview (2019)** repository. Use the following command for SQL Server 2019 installations:
68+
> If you want to install SQL Server 2019 , you must instead register the SQL Server 2019 repository. Use the following command for SQL Server 2019 installations:
6969
>
7070
> ```bash
71-
> sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-preview.list)"
71+
> sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2019.list)"
7272
> ```
7373
7474
3. Run the following commands to install SQL Server:
@@ -114,10 +114,10 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
114114
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
115115
```
116116

117-
2. Register the Microsoft SQL Server Ubuntu repository for SQL Server 2019 preview:
117+
2. Register the Microsoft SQL Server Ubuntu repository for SQL Server 2019:
118118

119119
```bash
120-
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-preview.list)"
120+
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2019.list)"
121121
```
122122

123123
3. Run the following commands to install SQL Server:
@@ -144,7 +144,7 @@ To configure SQL Server on Ubuntu, run the following commands in a terminal to i
144144

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

147-
At this point, SQL Server 2019 preview is running on your Ubuntu machine and is ready to use!
147+
At this point, SQL Server 2019 is running on your Ubuntu machine and is ready to use!
148148

149149
::: moniker-end
150150

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
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.
3+
description: Explore different ways of using and interacting with SQL Server 2017 and 2019 container images in Docker. This includes persisting data, copying files, and troubleshooting.
44
author: vin-yu
55
ms.author: vinsonyu
66
ms.reviewer: vanto
@@ -25,10 +25,10 @@ This article explains how to configure and use the [mssql-server-linux container
2525
2626
## Pull and run the container image
2727

28-
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:
28+
To pull and run the Docker container images for SQL Server 2017 and SQL Server 2019, follow the prerequisites and steps in the following quickstart:
2929

3030
- [Run the SQL Server 2017 container image with Docker](quickstart-install-connect-docker.md?view=sql-server-2017)
31-
- [Run the SQL Server 2019 preview container image with Docker](quickstart-install-connect-docker.md?view=sql-server-ver15)
31+
- [Run the SQL Server 2019 container image with Docker](quickstart-install-connect-docker.md?view=sql-server-ver15)
3232

3333
This configuration article provides additional usage scenarios in the following sections.
3434

@@ -37,9 +37,9 @@ This configuration article provides additional usage scenarios in the following
3737

3838
## <a id="rhel"></a> Run RHEL-based container images
3939

40-
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:2019-CTP3.2-ubuntu** to **mcr.microsoft.com/mssql/rhel/server:2019-CTP3.2** in all of your docker commands.
40+
All of the documentation on SQL Server Linux container images point to Ubuntu-based containers. Beginning with SQL Server 2019, you can use containers based on Red Hat Enterprise Linux (RHEL). Change the container repository from **mcr.microsoft.com/mssql/server:2019-CTP3.2-ubuntu** to **mcr.microsoft.com/mssql/rhel/server:2019-CTP3.2** in all of your docker commands.
4141

42-
For example, the following command pulls the latest SQL Server 2019 preview container that uses RHEL:
42+
For example, the following command pulls the latest SQL Server 2019 container that uses RHEL:
4343

4444
```bash
4545
sudo docker pull mcr.microsoft.com/mssql/rhel/server:2019-CTP3.2
@@ -121,7 +121,7 @@ sqlcmd -S 10.3.2.4,1400 -U SA -P "<YourPassword>"
121121

122122
### Tools inside the container
123123

124-
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.
124+
Starting with SQL Server 2017, 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.
125125

126126
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.
127127

@@ -165,7 +165,7 @@ docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=<YourStrong!Passw0rd>" -p 14
165165
<!--SQL Server 2019 on Linux-->
166166
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
167167
168-
The following example creates two SQL Server 2019 preview containers and maps them to ports **1401** and **1402** on the host machine.
168+
The following example creates two SQL Server 2019 containers and maps them to ports **1401** and **1402** on the host machine.
169169
170170
```bash
171171
docker run -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=<YourStrong!Passw0rd>' -p 1401:1433 -d mcr.microsoft.com/mssql/server:2019-CTP3.2-ubuntu

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

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

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

2727
::: moniker-end
2828

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ docker run `
5151
<!--SQL Server 2019 on Linux-->
5252
::: moniker range=">= sql-server-linux-ver15 || >= sql-server-ver15 || =sqlallproducts-allversions"
5353

54-
The following example shows how to use these environment variables to pull and run a single SQL Server 2019 preview container configured for MSDTC. This allows it to communicate with any application on any hosts.
54+
The following example shows how to use these environment variables to pull and run a single SQL Server 2019 container configured for MSDTC. This allows it to communicate with any application on any hosts.
5555

5656
```bash
5757
docker run \

0 commit comments

Comments
 (0)