mysql - percona replication change master -


i'm trying set replication between 2 mysql servers. slave log in follows:

 mysql --host=10.32.8.187 --user=repl --password=******** 

my change master statement:

change master  master_host='10.32.8.187',  master_user='repl',  master_password='********',  master_log_file='mysqld-bin.000006',  master_log_pos=632; 

but im getting following error:

error 1227 (42000): access denied; need (at least 1 of) super privilege(s) operation 

when run show grants following

grants repl@10.32.8.%  grant reload, process, super, replication slave, replication client on *.* 'repl'@'10.32.8.%' identified password '*2470c0c06dee42fd1618bb99005adca2ec9d1e19' 

so surely have super privilege?

(i'm running percona-server-55.)

although restarting servers worked, may have needed run flush privileges reload grants.


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -