Skip to content

Commit cf73242

Browse files
Merge pull request #35999 from AttinderPalSingh/SQL2025LinuxDocs
Sql2025 linux docs
2 parents 6118532 + faaa09e commit cf73242

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

docs/linux/sql-server-linux-configure-mssql-conf.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure SQL Server Settings on Linux
33
description: This article describes how to use the mssql-conf tool to configure SQL Server settings on Linux.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 07/03/2025
6+
ms.date: 12/04/2025
77
ms.service: sql
88
ms.subservice: linux
99
ms.topic: install-set-up-deploy
@@ -177,7 +177,7 @@ ms.custom:
177177
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=<password>" \
178178
-p 5433:1433 --name sql1 \
179179
-v /container/sql1:/var/opt/mssql \
180-
-d mcr.microsoft.com/mssql/server:2019-latest
180+
-d mcr.microsoft.com/mssql/server:2025-latest
181181
```
182182

183183
> [!CAUTION]
@@ -241,7 +241,7 @@ sudo /opt/mssql/bin/mssql-conf set sqlagent.errorlogginglevel <level>
241241

242242
## Configure Microsoft Entra authentication
243243

244-
Starting with [!INCLUDE [sssql22-md](../includes/sssql22-md.md)], you can configure Microsoft Entra ID for [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)]. To configure Microsoft Entra ID, you must install the Azure extension for [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] following the installation of [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)]. For information on how to configure Microsoft Entra ID, see [Tutorial: Set up Microsoft Entra authentication for SQL Server](../relational-databases/security/authentication-access/azure-ad-authentication-sql-server-setup-tutorial.md).
244+
Starting with [!INCLUDE [sssql22-md](../includes/sssql22-md.md)], you can configure Microsoft Entra ID for [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)]. To configure Microsoft Entra ID, you must install the Azure extension for [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] following the installation of [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)]. For information on how to configure Microsoft Entra ID, see [Tutorial: Set up Microsoft Entra authentication for SQL Server with app registration](../relational-databases/security/authentication-access/azure-ad-authentication-sql-server-setup-tutorial.md).
245245

246246
<a id="change-the-default-azure-ad-certificate-path"></a>
247247

@@ -662,8 +662,8 @@ sudo systemctl restart mssql-server
662662

663663
For information on how this is used with availability groups, see the following two articles.
664664

665-
- [Configure SQL Server Always On Availability Group for high availability on Linux](sql-server-linux-availability-group-configure-ha.md)
666-
- [Configure a SQL Server Availability Group for read-scale on Linux](sql-server-linux-availability-group-configure-rs.md)
665+
- [Configure SQL Server availability group for high availability on Linux](sql-server-linux-availability-group-configure-ha.md)
666+
- [Configure a SQL Server availability group for read-scale on Linux](sql-server-linux-availability-group-configure-rs.md)
667667

668668
<a id="localaudit"></a>
669669

docs/linux/sql-server-linux-setup-full-text-search.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Install SQL Server Full-Text Search on Linux
33
description: Learn how to install SQL Server Full-Text Search on Linux. Full-Text Search enables you to run full-text queries against character-based data in SQL Server tables.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 07/03/2025
6+
ms.date: 12/04/2025
77
ms.service: sql
88
ms.subservice: linux
99
ms.topic: install-set-up-deploy
@@ -15,7 +15,9 @@ ms.custom:
1515

1616
[!INCLUDE [SQL Server - Linux](../includes/applies-to-version/sql-linux.md)]
1717

18-
The following steps install [Full-Text Search](../relational-databases/search/full-text-search.md) (**mssql-server-fts**) on Linux. Full-Text Search enables you to run full-text queries against character-based data in [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] tables. For known issues for this release, see the [Release notes for SQL Server 2022 on Linux](sql-server-linux-release-notes-2022.md).
18+
The following steps install [Full-Text Search](../relational-databases/search/full-text-search.md) (**mssql-server-fts**) on Linux. Full-Text Search enables you to run full-text queries against character-based data in [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] tables.
19+
20+
[!INCLUDE [editions-supported-features-linux](../includes/editions-supported-features-linux.md)]
1921

2022
> [!NOTE]
2123
> Before installing [!INCLUDE [ssnoversion-md](../includes/ssnoversion-md.md)] Full-Text Search, first [install SQL Server](sql-server-linux-setup.md#platforms). This configures the keys and repositories that you use when installing the **mssql-server-fts** package.
@@ -72,7 +74,7 @@ sudo apt-get update
7274
sudo apt-get install -y mssql-server-fts
7375
```
7476

75-
If you need an offline installation, locate the Full-text Search package download in the [Release notes for SQL Server 2022 on Linux](sql-server-linux-release-notes-2022.md). Then use the same offline installation steps described in the article [Install SQL Server](sql-server-linux-setup.md#offline).
77+
If you need an offline installation, locate the Full-text Search package download in the [Release notes for SQL Server 2025 on Linux](sql-server-linux-release-notes-2025.md). Then use the same offline installation steps described in the article [Install SQL Server](sql-server-linux-setup.md#offline).
7678

7779
---
7880

docs/linux/sql-server-linux-setup-sql-agent.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure the SQL Server Agent on Linux
33
description: Learn how to enable or install the SQL Server Agent on Linux. Starting with SQL Server 2017 CU4, SQL Server Agent is included with the mssql-server package.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 05/19/2025
6+
ms.date: 12/04/2025
77
ms.service: sql
88
ms.subservice: linux
99
ms.topic: install-set-up-deploy
@@ -18,7 +18,9 @@ ms.custom:
1818

1919
This article describes how to enable or install the SQL Server Agent on Linux.
2020

21-
The [SQL Server Agent](/ssms/agent/sql-server-agent) runs scheduled SQL Server jobs. Starting with [!INCLUDE [sssql17-md](../includes/sssql17-md.md)] CU 4, SQL Server Agent is included with the **mssql-server** package and is disabled by default. For information on the features supported for this release of the SQL Server Agent along with version information, see [Release notes for SQL Server 2017 on Linux](sql-server-linux-release-notes-2017.md).
21+
The [SQL Server Agent](/ssms/agent/sql-server-agent) runs scheduled SQL Server jobs. Starting with [!INCLUDE [sssql17-md](../includes/sssql17-md.md)] CU 4, SQL Server Agent is included with the **mssql-server** package and is disabled by default.
22+
23+
[!INCLUDE [editions-supported-features-linux](../includes/editions-supported-features-linux.md)]
2224

2325
## Instructions
2426

0 commit comments

Comments
 (0)