Advertisement
kdaud

Exception

Aug 28th, 2019
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.97 KB | None | 0 0
  1. The following error occurred at startup:
  2. Error occurred while trying to get the updates needed for the database. Unable to get a connection to the database. Please check your openmrs runtime properties file and make sure you have the correct connection.username and connection.password set
  3. java.lang.RuntimeException: Error occurred while trying to get the updates needed for the database. Unable to get a connection to the database.  Please check your openmrs runtime properties file and make sure you have the correct connection.username and connection.password set
  4.     at org.openmrs.util.DatabaseUpdater.getUnrunDatabaseChanges(DatabaseUpdater.java:630)
  5.     at org.openmrs.util.DatabaseUpdater.getUnrunDatabaseChanges(DatabaseUpdater.java:587)
  6.     at org.openmrs.util.DatabaseUpdater.updatesRequired(DatabaseUpdater.java:252)
  7.     at org.openmrs.web.Listener.setupNeeded(Listener.java:217)
  8.     at org.openmrs.web.Listener.contextInitialized(Listener.java:179)
  9.     at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4699)
  10.     at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5165)
  11.     at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
  12.     at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:743)
  13.     at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:719)
  14.     at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714)
  15.     at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:970)
  16.     at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1841)
  17.     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
  18.     at java.util.concurrent.FutureTask.run(FutureTask.java:266)
  19.     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  20.     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  21.     at java.lang.Thread.run(Thread.java:748)
  22. Caused by: java.lang.Exception: Unable to get a connection to the database.  Please check your openmrs runtime properties file and make sure you have the correct connection.username and connection.password set
  23.     at org.openmrs.util.DatabaseUpdater.getLiquibase(DatabaseUpdater.java:361)
  24.     at org.openmrs.util.DatabaseUpdater.getUnrunDatabaseChanges(DatabaseUpdater.java:615)
  25.     ... 17 more
  26. Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
  27.     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  28.     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  29.     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  30.     at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
  31.     at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  32.     at com.mysql.jdbc.Util.getInstance(Util.java:408)
  33.     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:919)
  34.     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
  35.     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
  36.     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
  37.     at com.mysql.jdbc.ConnectionImpl.connectWithRetries(ConnectionImpl.java:2094)
  38.     at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2019)
  39.     at com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:776)
  40.     at com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:47)
  41.     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  42.     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
  43.     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
  44.     at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
  45.     at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
  46.     at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:386)
  47.     at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:330)
  48.     at java.sql.DriverManager.getConnection(DriverManager.java:664)
  49.     at java.sql.DriverManager.getConnection(DriverManager.java:247)
  50.     at org.openmrs.util.DatabaseUpdater.getConnection(DatabaseUpdater.java:423)
  51.     at org.openmrs.util.DatabaseUpdater.getLiquibase(DatabaseUpdater.java:358)
  52.     ... 18 more
  53. Caused by: java.sql.SQLException: Access denied for user 'openmrs_user'@'localhost' (using password: YES)
  54.     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)
  55.     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
  56.     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
  57.     at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:873)
  58.     at com.mysql.jdbc.MysqlIO.proceedHandshakeWithPluggableAuthentication(MysqlIO.java:1710)
  59.     at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1226)
  60.     at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2188)
  61.     at com.mysql.jdbc.ConnectionImpl.connectWithRetries(ConnectionImpl.java:2035)
  62.     ... 32 more
  63.  
  64.  
  65. See the server log for full output.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement