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
> 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`.
20
21
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.
22
24
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
25
26
26
-
## <aid="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:
29
28
30
29
```bash
31
30
pip3 install -U requests
@@ -35,21 +34,21 @@ pip3 install -U requests
35
34
36
35
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.
37
36
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`.
40
39
41
40
1. Open a new Windows PowerShell session so that it gets the latest path with Python in it.
42
41
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.
44
43
45
44
For example, for 2019-cu4, run the following command:
> 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`.
53
52
54
53
1. Install `azdata`.
55
54
@@ -78,29 +77,29 @@ On Linux, you must install Python 3.6 and then upgrade pip. The following exampl
78
77
sudo -H pip3 install --upgrade pip
79
78
```
80
79
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.
82
81
83
82
For example, for `2019-cu6`, run the following command:
> 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`.
91
90
92
91
1. Install `azdata`.
93
92
94
93
```bash
95
94
pip3 install -r https://aka.ms/azdata --user
96
95
```
97
96
98
-
> [!NOTE]
97
+
> [!NOTE]
99
98
> 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.
100
99
101
-
## <aid="macOSX"></a> Install `azdata` on macOS or OS X
100
+
## <aid="macOSX"></a> Install `azdata` on macOS
102
101
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.
104
103
105
104
1. On a macOS client, install [Homebrew](https://brew.sh) if you don't have it already:
106
105
@@ -121,7 +120,7 @@ To install `azdata` on macOS or OS X complete these steps. For each step, run th
121
120
brew install freetds
122
121
```
123
122
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`:
@@ -133,6 +132,6 @@ To install `azdata` on macOS or OS X complete these steps. For each step, run th
133
132
pip3 install -r https://aka.ms/azdata
134
133
```
135
134
136
-
## Next steps
135
+
## Related content
137
136
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)
[!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.
21
19
22
20
## Find latest version
23
21
24
22
To find your installed version and see if you need to update, run `azdata --version`.
25
23
26
24
## OS specific instructions
27
25
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)
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)
> 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
16
This page contains the support matrix and support lifecycle policy for the Microsoft JDBC Driver for SQL Server.
19
17
20
18
## 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
25
23
26
24
The following Microsoft JDBC Drivers are supported, until the indicated End of Support date.
27
25
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|
29
27
|-|-|-|-|
30
28
|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|
31
29
|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
128
126
129
127
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.
130
128
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.
132
130
133
131
## Application server support
134
132
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.
> 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:
@@ -422,14 +420,14 @@ The JDBC Driver 6.4 is available on the Maven Central Repository and can be adde
422
420
423
421
## Operating System requirements
424
422
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.
426
424
427
425
## Supported languages
428
426
429
427
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).
430
428
431
429
For more information about collations, see "Working with Collations" in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Books Online.
432
-
433
-
## See also
434
430
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