We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 478010b + 56d263f commit da99deeCopy full SHA for da99dee
5.7/docker-entrypoint.sh
@@ -54,7 +54,7 @@ if [ "$1" = 'mysqld' ]; then
54
-- What's done in this file shouldn't be replicated
55
-- or products like mysql-fabric won't work
56
SET @@SESSION.SQL_LOG_BIN=0;
57
- DELETE FROM mysql.user where user NOT IN ('mysql.sys', 'mysqlxsys');
+ DELETE FROM mysql.user where user != 'mysql.sys';
58
CREATE USER 'root'@'%' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ;
59
GRANT ALL ON *.* TO 'root'@'%' WITH GRANT OPTION ;
60
DROP DATABASE IF EXISTS test ;
0 commit comments