在Linux平台上部署Java应用程序

时间:2018-02-12 22:09:46

标签: java linux tomcat8.5

我正在尝试在Linux平台上部署项目war文件,它会给我以下错误。

com.microsoft.sqlserver.jdbc.SQLServerException: This driver is not configured for integrated authentication. ClientConnectionId:1207f4ed-32d0-44e8-ae1c-308b157e9903

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate.exception.JDBCConnectionException: Could not open connection

服务器详细信息

Server - Tomcat v8.5

属性文件中的配置。

    jdbc.url = jdbc:sqlserver://DC01ODSDBDV03;databaseName=ExecDB_Stg;integratedSecurity=true;

   hibernate.dialect = org.hibernate.dialect.SQLServer2008Dialect
   hibernate.show_sql = true
   hibernate.format_sql = true

我们尝试添加以下javakerberos属性,但它没有用。

  authenticationScheme=JavaKerberos  

请帮忙。

1 个答案:

答案 0 :(得分:0)

为了节省很多痛苦,我们真的试图说服sql管理员允许你进行密码验证。

否则你需要在AD服务帐户下运行Tomcat,如果你知道如何做到这一点并不困难。

我写了一篇关于SPNEGO authentication的博客。您不需要所有步骤,Tomcat将作为AD服务运行就足够了。 (直到配置krb5.ini文件)