There was an error while loading. Please reload this page.
1 parent 4b16c83 commit 67d08a5Copy full SHA for 67d08a5
openid-connect-server-webapp/src/main/resources/db/mysql/db_users.sql
@@ -1,6 +1,9 @@
1
-CREATE USER 'oicuser'@'localhost' IDENTIFIED WITH mysql_native_password 'oicuser';
2
-CREATE USER 'oicuser'@'%' IDENTIFIED WITH mysql_native_password 'oicuser';
+CREATE USER 'oicuser'@'localhost' IDENTIFIED BY 'oicuser';
+CREATE USER 'oicuser'@'%' IDENTIFIED BY 'oicuser';
3
4
GRANT ALL ON *.* TO 'oicuser'@'localhost';
5
GRANT ALL ON *.* TO 'oicuser'@'%';
6
FLUSH PRIVILEGES;
7
+
8
9
+ALTER USER 'oicuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'oicuser'
0 commit comments