source include/have_openssl.inc; source include/master-slave.inc; # creating replication user for whom ssl auth is required # preparing playground connection master; grant replication slave on *.* to replssl@localhost require ssl; create table t1 (t int); save_master_pos; #syncing with master connection slave; sync_with_master; #trying to use this user without ssl stop slave; change master to master_user='replssl',master_password=''; start slave; sleep 3; connection master; show full processlist; connection slave; stop slave; connection master; show full processlist;