forked from DevOps/deploy.stack
up(ver): update version
This commit is contained in:
2124
n9e/initsql/a-n9e.sql
Normal file
2124
n9e/initsql/a-n9e.sql
Normal file
File diff suppressed because it is too large
Load Diff
10
n9e/initsql/c-init.sql
Normal file
10
n9e/initsql/c-init.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE USER IF NOT EXISTS 'root'@'127.0.0.1' IDENTIFIED BY '1234';
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' WITH GRANT OPTION;
|
||||
|
||||
CREATE USER IF NOT EXISTS 'root'@'localhost' IDENTIFIED BY '1234';
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION;
|
||||
|
||||
CREATE USER IF NOT EXISTS 'root'@'%' IDENTIFIED BY '1234';
|
||||
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
|
||||
|
||||
FLUSH PRIVILEGES;
|
||||
Reference in New Issue
Block a user