Skip to content

Commit 67d08a5

Browse files
authored
Update db_users.sql
Update SQL
1 parent 4b16c83 commit 67d08a5

File tree

1 file changed

+5
-2
lines changed
  • openid-connect-server-webapp/src/main/resources/db/mysql

1 file changed

+5
-2
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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';
1+
CREATE USER 'oicuser'@'localhost' IDENTIFIED BY 'oicuser';
2+
CREATE USER 'oicuser'@'%' IDENTIFIED BY 'oicuser';
33

44
GRANT ALL ON *.* TO 'oicuser'@'localhost';
55
GRANT ALL ON *.* TO 'oicuser'@'%';
66
FLUSH PRIVILEGES;
7+
8+
9+
ALTER USER 'oicuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'oicuser'

0 commit comments

Comments
 (0)