ERROR [main] com.zaxxer.hikari.pool.HikariPool.throwPoolInitializationException sakai - Exception during pool initialization.
java.sql.SQLException: Access denied for user 'sakaiuser'@'localhost' (using password: YES)
e
## MySQL settings
username@javax.sql.BaseDataSource=sakaiuser
password@javax.sql.BaseDataSource=sakaipassword
# use your sakaidatabase name in the URI that starts u...@javax.sql.BaseDataSource= , below.
vendor@org.sakaiproject.db.api.SqlService=mysql
driverClassName@javax.sql.BaseDataSource=com.mysql.jdbc.Driver
hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
url@javax.sql.BaseDataSource=jdbc:mysql://127.0.0.1:3306/sakaidatabase?useUnicode=true&characterEncoding=UTF-8
validationQuery@javax.sql.BaseDataSource=select 1 from DUAL
defaultTransactionIsolationString@javax.sql.BaseDataSource=TRANSACTION_READ_COMMITTED
Any assistance would be appreciated.
--
You received this message because you are subscribed to the Google Groups "Sakai Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sakai-dev+...@apereo.org.
To post to this group, send email to saka...@apereo.org.
Visit this group at https://groups.google.com/a/apereo.org/group/sakai-dev/.
<catalina.out>
mysql> select DISTINCT User, Host from mysql.user;
+------------------+-----------+
| User | Host |
+------------------+-----------+
| sakaiuser | 127.0.0.1 |
| debian-sys-maint | localhost |
| mysql.session | localhost |
| mysql.sys | localhost |
| root | localhost |
| sakaiuser | localhost |
+------------------+-----------+
sudo mysql -u sakaiuser -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 30
Server version: 5.7.24-0ubuntu0.18.10.1 (Ubuntu)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> SHOW Databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| sakaidatabase |
+--------------------+
2 rows in set (0.00 sec)