5 lines
128 B
SQL
5 lines
128 B
SQL
#create user repl@'%' identified by 'repl';
|
|
grant replication slave on *.* to repl@'%' identified by 'repl';
|
|
|
|
FLUSH PRIVILEGES;
|