36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
include/master-slave.inc
|
|
Warnings:
|
|
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
|
|
Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
|
|
[connection master]
|
|
create user 'user_foo'@'%' identified by 'user_foopass';
|
|
grant select on *.* to 'user_foo'@'%';
|
|
revoke select on *.* from 'user_foo'@'%';
|
|
select select_priv from mysql.user where user='user_foo' /* master:must be N */;
|
|
select_priv
|
|
N
|
|
include/sync_slave_sql_with_master.inc
|
|
create user 'user_foo'@'%' identified by 'user_foopass';
|
|
grant select on *.* to 'user_foo'@'%';
|
|
revoke select on *.* from 'user_foo'@'%';
|
|
select select_priv from mysql.user where user='user_foo' /* slave:must be N */;
|
|
select_priv
|
|
N
|
|
grant select on *.* to 'user_foo'@'%';
|
|
select select_priv from mysql.user where user='user_foo' /* slave:must be Y */;
|
|
select_priv
|
|
Y
|
|
revoke select on *.* from 'user_foo';
|
|
select select_priv from mysql.user where user='user_foo' /* master:must be N */;
|
|
select_priv
|
|
N
|
|
include/sync_slave_sql_with_master.inc
|
|
select select_priv from mysql.user where user='user_foo' /* slave:must get Y */;
|
|
select_priv
|
|
Y
|
|
revoke select on *.* FROM 'user_foo';
|
|
delete from mysql.user where user="user_foo";
|
|
include/sync_slave_sql_with_master.inc
|
|
delete from mysql.user where user="user_foo";
|
|
include/rpl_end.inc
|