Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.19 KB | None | 0 0
  1.  
  2. 2018.07.23 01:03:27 [INFO] Fetching all AuthHandler entries
  3. 2018.07.23 01:03:27 [INFO] HikariCP pooling enabled for 'authHandlerPool'
  4. [main] WARN com.zaxxer.hikari.HikariDataSource - idleTimeout is greater than maxLifetime, setting to maxLifetime.
  5. [main] INFO com.zaxxer.hikari.HikariDataSource - Hikari pool authHandlerPool is starting.
  6. [main] INFO com.zaxxer.hikari.pool.HikariPool - Hikari pool authHandlerPool is shutting down.
  7. 2018.07.23 01:03:28 [ERROR] com.zaxxer.hikari.pool.PoolInitializationException: Exception during pool initialization
  8.     at com.zaxxer.hikari.pool.HikariPool.initializeConnections(HikariPool.java:580)
  9.     at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:150)
  10.     at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:96)
  11.     at launchserver.auth.MySQLSourceConfig.getConnection(MySQLSourceConfig.java:113)
  12.     at launchserver.auth.handler.MySQLAuthHandler.<init>(MySQLAuthHandler.java:62)
  13.     at launchserver.auth.handler.AuthHandler.newHandler(AuthHandler.java:51)
  14.     at launchserver.LaunchServer$Config.<init>(LaunchServer.java:475)
  15.     at launchserver.LaunchServer$Config.<init>(LaunchServer.java:452)
  16.     at launchserver.LaunchServer.<init>(LaunchServer.java:165)
  17.     at launchserver.LaunchServer.main(LaunchServer.java:395)
  18. Caused by: java.sql.SQLException: The server time zone value 'MSK' is unrecognized or represents more than one time zone. You m
  19. ust configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone
  20. value if you want to utilize time zone support.
  21.     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:127)
  22.     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:95)
  23.     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:87)
  24.     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:61)
  25.     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:71)
  26.     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:76)
  27.     at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:862)
  28.     at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:444)
  29.     at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:230)
  30.     at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:226)
  31.     at com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:438)
  32.     at com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:146)
  33.     at com.mysql.cj.jdbc.MysqlDataSource.getConnection(MysqlDataSource.java:119)
  34.     at com.zaxxer.hikari.pool.HikariPool.addConnection(HikariPool.java:495)
  35.     at com.zaxxer.hikari.pool.HikariPool.initializeConnections(HikariPool.java:564)
  36.     ... 9 more
  37. Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'MSK' is unrecognized or rep
  38. resents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration prop
  39. erty) to use a more specifc time zone value if you want to utilize time zone support.
  40.     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  41.     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  42.     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  43.     at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
  44.     at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:59)
  45.     at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:83)
  46.     at com.mysql.cj.util.TimeUtil.getCanonicalTimezone(TimeUtil.java:128)
  47.     at com.mysql.cj.protocol.a.NativeProtocol.configureTimezone(NativeProtocol.java:2201)
  48.     at com.mysql.cj.protocol.a.NativeProtocol.initServerSession(NativeProtocol.java:2225)
  49.     at com.mysql.cj.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:1391)
  50.     at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:993)
  51.     at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:852)
  52.     ... 17 more
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement