Skip to content

Commit 655fbe1

Browse files
author
Jill Grant
authored
Merge pull request #30850 from rwestMSFT/rw-0611-centos
Remove mentions of CentOS and refresh articles [due 30 June]
2 parents 21f07f9 + 48845c4 commit 655fbe1

8 files changed

Lines changed: 79 additions & 88 deletions

docs/azdata/install/deploy-install-azdata-pip.md

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,28 @@ title: Install Azure Data CLI (azdata) using pip
33
description: Learn how to install the azdata tool with pip.
44
author: MikeRayMSFT
55
ms.author: mikeray
6-
ms.reviewer: danibunny
7-
ms.date: 07/29/2021
6+
ms.reviewer: danibunny, randolphwest
7+
ms.date: 06/28/2024
88
ms.service: sql
99
ms.subservice: big-data-cluster
1010
ms.topic: conceptual
11-
ms.custom: intro-installation, linux-related-content
11+
ms.custom:
12+
- intro-installation
13+
- linux-related-content
1214
---
1315

1416
# Install [!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)] with `pip`
1517

16-
[!INCLUDE[azdata](../../includes/applies-to-version/azdata.md)]
18+
[!INCLUDE [azdata](../../includes/applies-to-version/azdata.md)]
1719

18-
> [!CAUTION]
19-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and plan accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
20+
This article describes how to install the [!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)] tool on Windows, Linux, or macOS using `pip`.
2021

21-
This article describes how to install the [!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)] tool on Windows, Linux or macOS/OS X using `pip`.
22+
> [!TIP]
23+
> For a simpler experience, `azdata` can be installed with a [package manager](deploy-install-azdata.md) for Windows, Linux (Ubuntu, Debian, RHEL, openSUSE and SLE distributions) and macOS.
2224
23-
> [!TIP]
24-
> For a simpler experience, `azdata` can be installed with a [package manager](./deploy-install-azdata.md) for Windows, Linux (Ubuntu, Debian, RHEL, CentOS, openSUSE and SLE distributions) and macOS.
25+
## Prerequisites
2526

26-
## <a id="prerequisites"></a> Prerequisites
27-
28-
`azdata` is a command-line utility written in Python that enables cluster administrators to bootstrap and manage data resources via REST APIs. The minimum Python version required is v3.6. `pip` is required to download and install the `azdata` tool. The instructions below provide examples for Windows, Linux (Ubuntu) and macOS/OS X. For installing Python on other platforms, see the [Python documentation](https://wiki.python.org/moin/BeginnersGuide/Download). In addition, install and update the latest version of `requests` Python package:
27+
`azdata` is a command-line utility written in Python that enables cluster administrators to bootstrap and manage data resources via REST APIs. The minimum Python version required is v3.6. `pip` is required to download and install the `azdata` tool. The following instructions provide examples for Windows, Linux (Ubuntu), and macOS. For installing Python on other platforms, see the [Python documentation](https://wiki.python.org/moin/BeginnersGuide/Download). In addition, install and update the latest version of `requests` Python package:
2928

3029
```bash
3130
pip3 install -U requests
@@ -35,21 +34,21 @@ pip3 install -U requests
3534

3635
1. On a Windows client, download the necessary Python package from [https://www.python.org/downloads/](https://www.python.org/downloads/). For python 3.6 and later, pip3 is also installed when you install Python.
3736

38-
> [!TIP]
39-
> When installing Python3, select to add Python to your `PATH`. If you do not, you can later find where pip3 is located and manually add it to your `PATH`.
37+
> [!TIP]
38+
> When installing Python3, select to add Python to your `PATH`. If you don't, you can later find where pip3 is located and manually add it to your `PATH`.
4039
4140
1. Open a new Windows PowerShell session so that it gets the latest path with Python in it.
4241

43-
1. Starting with SQL Server 2019 CU5 release, azdata has an independent semantic version from the server. If you have any previous releases of `azdata` installed prior to this, it is important to first uninstall them before installing the latest version.
42+
1. Starting with SQL Server 2019 CU5 release, `azdata` has an independent semantic version from the server. If you have any previous releases of `azdata` installed older than this, it's important to first uninstall them before installing the latest version.
4443

4544
For example, for 2019-cu4, run the following command:
4645

4746
```powershell
4847
pip3 uninstall -r https://azdatacli.blob.core.windows.net/python/azdata/2019-cu4/requirements.txt
4948
```
5049

51-
> [!NOTE]
52-
> In the preceding examples, replace `2019-cu6` with the version and CU of your installation of `azdata`.
50+
> [!NOTE]
51+
> In the preceding examples, replace `2019-cu6` with the version and CU of your installation of `azdata`.
5352
5453
1. Install `azdata`.
5554

@@ -78,29 +77,29 @@ On Linux, you must install Python 3.6 and then upgrade pip. The following exampl
7877
sudo -H pip3 install --upgrade pip
7978
```
8079

81-
1. Starting with SQL Server 2019 CU5 release, azdata has an independent semantic version from the server. If you have any previous releases of `azdata` installed prior to this, it is important to first uninstall them before installing the latest version.
80+
1. Starting with SQL Server 2019 CU5 release, `azdata` has an independent semantic version from the server. If you have any previous releases of `azdata` installed older than this, it's important to first uninstall them before installing the latest version.
8281

8382
For example, for `2019-cu6`, run the following command:
8483

8584
```bash
8685
pip3 uninstall -r https://azdatacli.blob.core.windows.net/python/azdata/2019-cu6/requirements.txt
8786
```
8887

89-
> [!NOTE]
90-
> In the preceding examples, replace `2019-cu6` with the version and CU of your installation of `azdata`.
88+
> [!NOTE]
89+
> In the preceding examples, replace `2019-cu6` with the version and CU of your installation of `azdata`.
9190
9291
1. Install `azdata`.
9392

9493
```bash
9594
pip3 install -r https://aka.ms/azdata --user
9695
```
9796

98-
> [!NOTE]
97+
> [!NOTE]
9998
> The `--user` switch installs `azdata` to the Python user install directory. This is typically `~/.local/bin` on Linux. Either add this directory to your path or navigate to the user install directory and run `./azdata` from there.
10099
101-
## <a id="macOSX"></a> Install `azdata` on macOS or OS X
100+
## <a id="macOSX"></a> Install `azdata` on macOS
102101

103-
To install `azdata` on macOS or OS X complete these steps. For each step, run the example in Terminal.
102+
To install `azdata` on macOS, complete these steps. For each step, run the example in Terminal.
104103

105104
1. On a macOS client, install [Homebrew](https://brew.sh) if you don't have it already:
106105

@@ -121,7 +120,7 @@ To install `azdata` on macOS or OS X complete these steps. For each step, run th
121120
brew install freetds
122121
```
123122

124-
1. Starting with SQL Server 2019 CU5 release, azdata has an independent semantic version from the server. If you have any previous releases of `azdata` installed prior to this, it is important to first uninstall them before installing the latest version. For example, the following command removes the RC1 version of `azdata`:
123+
1. Starting with SQL Server 2019 CU5 release, `azdata` has an independent semantic version from the server. If you have any previous releases of `azdata` installed older than this, it's important to first uninstall them before installing the latest version. For example, the following command removes the RC1 version of `azdata`:
125124

126125
```bash
127126
pip3 uninstall -r https://azdatacli.blob.core.windows.net/python/azdata/2019-rc1/requirements.txt
@@ -133,6 +132,6 @@ To install `azdata` on macOS or OS X complete these steps. For each step, run th
133132
pip3 install -r https://aka.ms/azdata
134133
```
135134

136-
## Next steps
135+
## Related content
137136

138-
For more information about big data clusters, see [What are [!INCLUDE[big-data-clusters-2019](../../includes/ssbigdataclusters-ver15.md)]?](../../big-data-cluster/big-data-cluster-overview.md).
137+
- [What are [!INCLUDE[big-data-clusters-2019](../../includes/ssbigdataclusters-ver15.md)]?](../../big-data-cluster/big-data-cluster-overview.md)

docs/azdata/install/deploy-install-azdata.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,36 @@ title: Install Azure Data CLI (azdata)
33
description: Learn how to install the Azure Data CLI azdata) tool.
44
author: MikeRayMSFT
55
ms.author: mikeray
6-
ms.reviewer: mihaelab
7-
ms.date: 01/07/2020
6+
ms.reviewer: mihaelab, randolphwest
7+
ms.date: 06/28/2024
88
ms.service: sql
99
ms.topic: conceptual
10-
ms.custom: intro-installation
10+
ms.custom:
11+
- intro-installation
1112
---
1213

1314
# Install [!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)]
1415

15-
[!INCLUDE[azdata](../../includes/applies-to-version/azdata.md)]
16+
[!INCLUDE [azdata](../../includes/applies-to-version/azdata.md)]
1617

17-
[!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)] is a command-line utility written in Python to bootstrap and manage the data services via REST APIs.
18-
19-
> [!CAUTION]
20-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and plan accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
18+
[!INCLUDE [azure-data-cli-azdata](../../includes/azure-data-cli-azdata.md)] is a command-line utility written in Python to bootstrap and manage the data services via REST APIs.
2119

2220
## Find latest version
2321

2422
To find your installed version and see if you need to update, run `azdata --version`.
2523

2624
## OS specific instructions
2725

28-
* [Install on Windows](../install/deploy-install-azdata-installer.md)
29-
* [Install on macOS](../install/deploy-install-azdata-macos.md)
30-
* Install on Linux or [Windows Subsystem for Linux (WSL)](/windows/wsl/about/)
31-
* [Install with apt on Debian or Ubuntu](../install/deploy-install-azdata-linux-package.md)
32-
* [Install with yum on RHEL, or CentOS](../install/deploy-install-azdata-yum.md)
33-
* [Install with Zypper on openSUSE or SLE](../install/deploy-install-azdata-zypper.md)
34-
* [Install from script](../install/deploy-install-azdata-pip.md)
26+
- [Install on Windows](deploy-install-azdata-installer.md)
27+
- [Install on macOS](deploy-install-azdata-macos.md)
28+
- Install on Linux or [Windows Subsystem for Linux (WSL)](/windows/wsl/about/)
29+
- [Install with apt on Debian or Ubuntu](deploy-install-azdata-linux-package.md)
30+
- [Install with yum on Red Hat Enterprise Linux](deploy-install-azdata-yum.md)
31+
- [Install with Zypper on openSUSE or SLE](deploy-install-azdata-zypper.md)
32+
- [Install from script](deploy-install-azdata-pip.md)
3533

3634
[!INCLUDE [azdata-package-installation-remove-pip-install](../../includes/azdata-package-installation-remove-pip-install.md)]
3735

38-
## Next steps
36+
## Related content
3937

40-
Use azdata with Big Data Clusters, see [What are [!INCLUDE[big-data-clusters-2019](../../includes/ssbigdataclusters-ver15.md)]?](../../big-data-cluster/big-data-cluster-overview.md).
38+
- [What are [!INCLUDE[big-data-clusters-2019](../../includes/ssbigdataclusters-ver15.md)]?](../../big-data-cluster/big-data-cluster-overview.md)

docs/connect/jdbc/microsoft-jdbc-driver-for-sql-server-support-matrix.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Support matrix
33
description: This page contains the support matrix and support life-cycle policy for the Microsoft JDBC Driver for SQL Server.
44
author: David-Engel
55
ms.author: davidengel
6-
ms.date: 01/31/2024
6+
ms.reviewer: randolphwest
7+
ms.date: 06/28/2024
78
ms.service: sql
89
ms.subservice: connectivity
910
ms.topic: conceptual
@@ -12,9 +13,6 @@ ms.topic: conceptual
1213

1314
[!INCLUDE[Driver_JDBC_Download](../../includes/driver_jdbc_download.md)]
1415

15-
> [!CAUTION]
16-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and plan accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
17-
1816
This page contains the support matrix and support lifecycle policy for the Microsoft JDBC Driver for SQL Server.
1917

2018
## Microsoft JDBC Driver support lifecycle matrix and policy
@@ -25,7 +23,7 @@ Extended and custom support options aren't available for the Microsoft JDBC Driv
2523

2624
The following Microsoft JDBC Drivers are supported, until the indicated End of Support date.
2725

28-
|Driver Name|Driver Package Version|Applicable JAR(s)|End of Mainstream Support|
26+
|Driver Name|Driver Package Version|Applicable JARs|End of Mainstream Support|
2927
|-|-|-|-|
3028
|Microsoft JDBC Driver 12.6 for SQL Server|12.6|mssql-jdbc-12.6.0.jre11.jar<br> mssql-jdbc-12.6.0.jre8.jar|January 31, 2029|
3129
|Microsoft JDBC Driver 12.4 for SQL Server|12.4|mssql-jdbc-12.4.0.jre11.jar<br> mssql-jdbc-12.4.0.jre8.jar|July 31, 2028|
@@ -128,8 +126,8 @@ The following Microsoft JDBC Drivers are supported, until the indicated End of S
128126

129127
The Microsoft JDBC driver is designed to work on any operating system that supports the use of a Java Virtual Machine (JVM). Some commonly used platforms include Windows, Windows Server, Linux, Unix, AIX, macOS, and others.
130128

131-
The JDBC product team tests our driver on Windows, Ubuntu Linux, CentOS Linux, and macOS.
129+
The JDBC product team tests our driver on Windows, Ubuntu Linux, and macOS.
132130

133131
## Application server support
134132

135-
The Microsoft JDBC Driver for SQL Server is tested with various application servers. Consult your application server vendor for more details on which driver version is compatible with their product.
133+
The Microsoft JDBC Driver for SQL Server is tested with various application servers. Consult your application server vendor for more details on which driver version is compatible with their product.

docs/connect/jdbc/system-requirements-for-the-jdbc-driver.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: System requirements
33
description: Find the system requirements for the JDBC driver. Including what Java, operation system, and database versions are supported.
44
author: David-Engel
55
ms.author: davidengel
6-
ms.date: 01/31/2024
6+
ms.reviewer: randolphwest
7+
ms.date: 06/28/2024
78
ms.service: sql
89
ms.subservice: connectivity
910
ms.topic: conceptual
@@ -12,10 +13,7 @@ ms.topic: conceptual
1213

1314
[!INCLUDE[Driver_JDBC_Download](../../includes/driver_jdbc_download.md)]
1415

15-
> [!CAUTION]
16-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and plan accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
17-
18-
To use the [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] to access data from a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] or [!INCLUDE [ssazure-sqldb](../../includes/ssazure-sqldb.md)], you must have the following components installed on your computer:
16+
To use the [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] to access data from a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] or [!INCLUDE [ssazure-sqldb](../../includes/ssazure-sqldb.md)], you must have the following components installed on your computer:
1917

2018
- [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] ([download](download-microsoft-jdbc-driver-for-sql-server.md))
2119
- Java Runtime Environment
@@ -422,14 +420,14 @@ The JDBC Driver 6.4 is available on the Maven Central Repository and can be adde
422420

423421
## Operating System requirements
424422

425-
The JDBC driver is designed to work on any operating system that supports the use of a Java Virtual Machine (JVM). However, only Sun Solaris, SUSE Linux, Ubuntu Linux, CentOS Linux, macOS, and Windows operating systems have officially been tested.
423+
The JDBC driver is designed to work on any operating system that supports the use of a Java Virtual Machine (JVM). However, only Sun Solaris, SUSE Linux, Ubuntu Linux, macOS, and Windows operating systems have officially been tested.
426424

427425
## Supported languages
428426

429427
The JDBC driver supports all [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] column collations. For more information about the collations supported by the JDBC driver, see [International features of the JDBC driver](international-features-of-the-jdbc-driver.md).
430428

431429
For more information about collations, see "Working with Collations" in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Books Online.
432-
433-
## See also
434430

435-
[Overview of the JDBC driver](overview-of-the-jdbc-driver.md)
431+
## Related content
432+
433+
- [Overview of the JDBC driver](overview-of-the-jdbc-driver.md)

0 commit comments

Comments
 (0)