~vkolesnikov/pbxt/pbxt-07-diskfull

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/rpl_openssl.result

  • Committer: paul-mccullagh
  • Date: 2006-10-23 09:14:04 UTC
  • Revision ID: paul-mccullagh-918861e03d351978a9541168a96e58cc826734ee
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
grant replication slave on *.* to replssl@localhost require ssl;
 
8
create table t1 (t int);
 
9
stop slave;
 
10
change master to master_user='replssl',master_password='';
 
11
start slave;
 
12
insert into t1 values (1);
 
13
select * from t1;
 
14
t
 
15
stop slave;
 
16
change master to master_ssl=1 , master_ssl_ca ='MYSQL_TEST_DIR/std_data/cacert.pem', master_ssl_cert='MYSQL_TEST_DIR/std_data/client-cert.pem', master_ssl_key='MYSQL_TEST_DIR/std_data/client-key.pem';
 
17
start slave;
 
18
select * from t1;
 
19
t
 
20
1
 
21
show slave status;
 
22
Slave_IO_State  Master_Host     Master_User     Master_Port     Connect_Retry   Master_Log_File Read_Master_Log_Pos     Relay_Log_File  Relay_Log_Pos   Relay_Master_Log_File   Slave_IO_Running        Slave_SQL_Running       Replicate_Do_DB Replicate_Ignore_DB     Replicate_Do_Table      Replicate_Ignore_Table  Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table     Last_Errno      Last_Error      Skip_Counter    Exec_Master_Log_Pos     Relay_Log_Space Until_Condition Until_Log_File  Until_Log_Pos   Master_SSL_Allowed      Master_SSL_CA_File      Master_SSL_CA_Path      Master_SSL_Cert Master_SSL_Cipher       Master_SSL_Key  Seconds_Behind_Master
 
23
#       127.0.0.1       replssl MASTER_MYPORT   1       #       #       #       #       #       #       Yes                             #                       0               0       #       #       None            0       Yes     MYSQL_TEST_DIR/std_data/cacert.pem              MYSQL_TEST_DIR/std_data/client-cert.pem         MYSQL_TEST_DIR/std_data/client-key.pem  #
 
24
stop slave;
 
25
change master to master_user='root',master_password='', master_ssl=0;
 
26
start slave;
 
27
drop user replssl@localhost;
 
28
drop table t1;
 
29
show slave status;
 
30
Slave_IO_State  Master_Host     Master_User     Master_Port     Connect_Retry   Master_Log_File Read_Master_Log_Pos     Relay_Log_File  Relay_Log_Pos   Relay_Master_Log_File   Slave_IO_Running        Slave_SQL_Running       Replicate_Do_DB Replicate_Ignore_DB     Replicate_Do_Table      Replicate_Ignore_Table  Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table     Last_Errno      Last_Error      Skip_Counter    Exec_Master_Log_Pos     Relay_Log_Space Until_Condition Until_Log_File  Until_Log_Pos   Master_SSL_Allowed      Master_SSL_CA_File      Master_SSL_CA_Path      Master_SSL_Cert Master_SSL_Cipher       Master_SSL_Key  Seconds_Behind_Master
 
31
#       127.0.0.1       root    MASTER_MYPORT   1       #       #       #       #       #       #       Yes                             #                       0               0       #       #       None            0       No      MYSQL_TEST_DIR/std_data/cacert.pem              MYSQL_TEST_DIR/std_data/client-cert.pem         MYSQL_TEST_DIR/std_data/client-key.pem  #