Teamcity installs the 32-bit version even if you're on a 64-bit platform unless you deliberately use 64-bit. So I am just going to give you the 32-bit instructions for using Windows authentication with Teamcity SQL database setup. The instructions are the same for the 64-bit setup, just change x86 to x64
- Create an empty database in SQL server
- Make sure the Windows account configured on the TeamCity service(s) have access to the database
- Copy sqljdbc42.jar to
<TeamCity_data_dir>\lib\jdbc\sqljdbc42.jar
- Copy
auth\x86\sqljdbc_auth.dll
from the Microsoft download to <TeamCity_data_dir>\lib\sqljdbc_auth.dll
- Open System > Advanced System Settings > Environment Variables and add a System variable TEAMCITY_SERVER_OPTS set to the value
-Djava.library.path=<TeamCity_data_dir>\lib
or run setx TEAMCITY_SERVER_OPTS=-Djava.library.path=<TeamCity_data_dir>\lib
- Click OK on all dialogs and restart the Teamcity services.
Now you can connect Teamcity to the SQL server using Windows Authentication after which the wizard will create the database.
Edit: January 27, 2020
With the 2019.2.1 update I've had to move the sql_jdbcauth.dll file to <TeamCity_data_dir>\system\caches\jdbc\native\windows-i386
This could be just a bug in the upgrade process.