I am installing TeamCity on a Windows 2012 Server. I'm at the database connection setup screen but getting this error.
"SQL error when doing: Taking a connection from the data source: no sqljdbc_auth in java.library.path"
I've copied the sqljdbc_auth.dll
to the C:\Windows\System32
folder and added a system environment variable java.library.path
that points to this folder.
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
<TeamCity_data_dir>\lib\jdbc\sqljdbc42.jar
auth\x86\sqljdbc_auth.dll
from the Microsoft download to <TeamCity_data_dir>\lib\sqljdbc_auth.dll
-Djava.library.path=<TeamCity_data_dir>\lib
or run setx TEAMCITY_SERVER_OPTS=-Djava.library.path=<TeamCity_data_dir>\lib
Now you can connect Teamcity to the SQL server using Windows Authentication after which the wizard will create the database.
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.