Skip to content

Commit f70c5e4

Browse files
authored
Merge pull request #136 from junpataleta/use_caching_sha2_password
Use `caching_sha2_password` authentication plugin
2 parents 54e8c82 + c3bda1b commit f70c5e4

File tree

1 file changed

+1
-1
lines changed
  • runner/main/modules/docker-database/mysqli.d/primary/docker-entrypoint-initdb.d

1 file changed

+1
-1
lines changed

runner/main/modules/docker-database/mysqli.d/primary/docker-entrypoint-initdb.d/01_privileges.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE USER 'replication'@'%' IDENTIFIED WITH mysql_native_password BY 'replication';
1+
CREATE USER 'replication'@'%' IDENTIFIED WITH caching_sha2_password BY 'replication';
22
GRANT REPLICATION SLAVE ON *.* TO 'replication'@'%';
33

44
ALTER USER 'root'@'%' IDENTIFIED BY 'moodle';

0 commit comments

Comments
 (0)