aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorDimitris Kavvathas <dimitris.kavvathas@sonarsource.com>2022-10-18 10:56:07 +0200
committersonartech <sonartech@sonarsource.com>2022-10-20 20:03:02 +0000
commit8156d99918eb55fdd104d5fe939e0660fdd49912 (patch)
treeb2d953572610fc41d010ea54b7146b633424c0fc /server
parent7119f04c06af35ed62814eba72ba84311c5afe34 (diff)
downloadsonarqube-8156d99918eb55fdd104d5fe939e0660fdd49912.tar.gz
sonarqube-8156d99918eb55fdd104d5fe939e0660fdd49912.zip
Dependency upgrade (minor): com.microsoft.sqlserver:mssql-jdbc from 11.2.0.jre11 to 11.2.1.jre11
Diffstat (limited to 'server')
-rw-r--r--server/sonar-docs/src/pages/setup/install-server.md2
-rw-r--r--server/sonar-docs/src/pages/setup/sonar-properties.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-docs/src/pages/setup/install-server.md b/server/sonar-docs/src/pages/setup/install-server.md
index 5a70208e21e..92381119c7a 100644
--- a/server/sonar-docs/src/pages/setup/install-server.md
+++ b/server/sonar-docs/src/pages/setup/install-server.md
@@ -63,7 +63,7 @@ Create an empty schema and a `sonarqube` user. Grant this `sonarqube` user permi
|
|To use integrated security:
|
-|1. Download the [Microsoft SQL JDBC Auth 11.2.0 package](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.0/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.0.x64.dll` to any folder in your path.
+|1. Download the [Microsoft SQL JDBC Auth 11.2.1 package](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.1/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.1.x64.dll` to any folder in your path.
|
|2. _If you're running SonarQube as a Windows service_, make sure the Windows account under which the service is running has permission to connect your SQL server. The account should have `db_owner` database role membership.
|
diff --git a/server/sonar-docs/src/pages/setup/sonar-properties.md b/server/sonar-docs/src/pages/setup/sonar-properties.md
index f39a8a48963..e98e179aa1a 100644
--- a/server/sonar-docs/src/pages/setup/sonar-properties.md
+++ b/server/sonar-docs/src/pages/setup/sonar-properties.md
@@ -37,7 +37,7 @@ By default the schema named "public" is used. It can be overridden with the para
**`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar;integratedSecurity=true`**
A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS). Use this connection string if you want to use integrated security with Microsoft Sql Server. Do not set the `SONAR_JDBC_USERNAME` or `SONAR_JDBC_PASSWORD` property if you are using Integrated Security.
-For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.0 package [here](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.0/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.0.x64.dll` to your path.
+For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.1 package [here](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.1/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.1.x64.dll` to your path.
**`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar`**
Use this connection string if you want to use SQL Auth while connecting to MS Sql Server. Set the `SONAR_JDBC_USERNAME` and `SONAR_JDBC_PASSWORD` appropriately.