summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorcolin-mueller-sonarsource <colin.mueller@sonarsource.com>2021-03-24 15:27:37 +0100
committersonartech <sonartech@sonarsource.com>2021-03-24 20:03:22 +0000
commit03e4773ebf6cba854cdcf57a600095f65f4f53e7 (patch)
tree1a6cbeea031e6f755be1c8771adb6ba19e55d644 /server
parentfefd8bd216979ae796cfc4770e95ef9777828883 (diff)
downloadsonarqube-03e4773ebf6cba854cdcf57a600095f65f4f53e7.tar.gz
sonarqube-03e4773ebf6cba854cdcf57a600095f65f4f53e7.zip
DOCS Update information for SQL Server Integrated Authentication
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 0c972694e12..0105068adc1 100644
--- a/server/sonar-docs/src/pages/setup/install-server.md
+++ b/server/sonar-docs/src/pages/setup/install-server.md
@@ -57,7 +57,7 @@ Create an empty schema and a `sonarqube` user. Grant this `sonarqube` user permi
|
|To use integrated security:
|
-|1. Download the [Microsoft SQL JDBC Driver 7.2.2 package](https://www.microsoft.com/en-us/download/details.aspx?id=57782) and copy the 64-bit version of `sqljdbc_auth.dll` to any folder in your path.
+|1. Download the [Microsoft SQL JDBC Driver 9.2.0 package](https://docs.microsoft.com/en-us/sql/connect/jdbc/release-notes-for-the-jdbc-driver?view=sql-server-ver15#92) and copy `mssql-jdbc_auth-9.2.0.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 adf1b5ef2a3..5669b71ae39 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 driver package [here](https://www.microsoft.com/en-us/download/details.aspx?id=55539) and copy sqljdbc_auth.dll to your path. You need to copy the 64-bit version of the dll.
+For Integrated Security to work, you have to download the Microsoft SQL JDBC Driver 9.2.0 package [here](https://docs.microsoft.com/en-us/sql/connect/jdbc/release-notes-for-the-jdbc-driver?view=sql-server-ver15#92) and copy mssql-jdbc_auth-9.2.0.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.