MySQL multi source replication - mysql

Can somebody write me step by step how to make multi source replication. I read a lot of info about it but i have a problem with gtid-mode. I turn on gtid-mode in my.ini file on the master computer but when i make dump on databases i got error with gtid executed need to be empty.

Try to execute:
slave> reset master;
slave> source dump.sql;
slave> start slave;
slave> show slave statusG
[...]
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
[...]

10:53:52 Restoring C:\Users\KasiSTD\Desktop\master3-1.sql Running: mysql.exe --defaults-file="c:\users\kasistd\appdata\local\temp\tmpmw0avv.cnf" --protocol=tcp --host=localhost --user=root --port=3306 --default-character-set=utf8 --comments < "C:\Users\KasiSTD\Desktop\master3-1.sql" ERROR 1840 (HY000) at line 26: ##GLOBAL.GTID_PURGED can only be set when ##GLOBAL.GTID_EXECUTED is empty. Operation failed with exitcode 1 10:53:53 Import of C:\Users\KasiSTD\Desktop\master3-1.sql has finished with 1 errors
This is error from mysql server 5.7 when i try to make import backup file
This is my.ini file only changes in [mysqld] log-bin=mysql-bin binlog-do-db=master3 auto_increment_increment = 2 gtid-mode = on enforce-gtid-consistency = 1 Server Id server-id=4

mysql> show slave status for channel 'master-joro'\G
*************************** 1. row ***************************
Slave_IO_State: Connecting to master
Master_Host: 192.168.1.62
Master_User: joro
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000003
Read_Master_Log_Pos: 1066
Relay_Log_File: mysql-relay-bin-master#002djoro.000001
Relay_Log_Pos: 4
Relay_Master_Log_File: mysql-bin.000003
Slave_IO_Running: Connecting
Slave_SQL_Running: Yes
Replicate_Do_DB: id,master2,final_repl
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 1066
Relay_Log_Space: 154
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 0
Master_UUID:
Master_Info_File: mysql.slave_master_info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay log; waiting for more up
dates
Master_Retry_Count: 86400
Master_Bind:
Last_IO_Error_Timestamp:
Last_SQL_Error_Timestamp:
Master_SSL_Crl:
Master_SSL_Crlpath:
Retrieved_Gtid_Set:
Executed_Gtid_Set: 2069dbc8-2c85-11e6-b4ce-0027136c5f75:1
Auto_Position: 0
Replicate_Rewrite_DB:
Channel_Name: master-joro
Master_TLS_Version:
1 row in set (0.00 sec)

Related

Replication from On-premise MySQL to AWS MySQL RDS

I'm trying to setup replication from on-premise mysql to AWS mysql rds only for selected databases.
I configured replicate-do-db & replicate-do-table to filter databases from RDS parameter list,But its replicating all the databases from Onpremise MySQL,and replicate-do-db & replicate-do-table looks empty in rds SHOW SLAVE STATUS also.Below are the screenshots.
I tried restart of rds,changing the parameter group.Nothing worked.Am i missing any additional configuration on RDS.
Onpremis MySQL version --> 8.0.16
RDS MySQL version --> 8.0.16
image replication filter RDS
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: master_host
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: master.000002
Read_Master_Log_Pos: 195
Relay_Log_File: relaylog.000030
Relay_Log_Pos: 275
Relay_Master_Log_File: master.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table: innodb_memcache.cache_policies,innodb_memcache.config_options,mysql.plugin,mysql.rds_configuration,mysql.rds_history,mysql.rds_monitor,mysql.rds_replication_status,mysql.rds_sysinfo
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 195
Relay_Log_Space: 596
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 11
Master_UUID: 51b1a20a-8b30-11ec-8f2e-0242ac12000b
Master_Info_File: mysql.slave_master_info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
Master_Retry_Count: 86400
Master_Bind:
Last_IO_Error_Timestamp:
Last_SQL_Error_Timestamp:
Master_SSL_Crl:
Master_SSL_Crlpath:
Retrieved_Gtid_Set:
Executed_Gtid_Set: 32d52d6b-89f0-11ec-b4f7-0abf88ecd642:1-96,
51b1a20a-8b30-11ec-8f2e-0242ac12000b:28,
c3e9fc5e-89c3-11ec-81f8-0242ac12000b:30-188
Auto_Position: 0
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
Master_public_key_path:
Get_master_public_key: 0
Network_Namespace:
1 row in set (0.00 sec)

Mysql slave alwayws shows "Slave_IO_Running: Connecting,Last_IO_Errno: 2061", then change to 1129

I am configuring mysql master and slave. I confirm when I ran "change master to" command, the following settings are correct and consistent to the values on master side:
MASTER_HOST
MASTER_USER
MASTER_PASSWORD
MASTER_LOG_FILE
MASTER_LOG_POS
Now, on slave side, it shows as below:
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Connecting to master
Master_Host: 172.16.0.5
Master_User: repl_1
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: master-bin.000003
Read_Master_Log_Pos: 155
Relay_Log_File: slave-relay-bin.000001
Relay_Log_Pos: 4
Relay_Master_Log_File: master-bin.000003
Slave_IO_Running: Connecting
Slave_SQL_Running: Yes
Replicate_Do_DB: myslave
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 155
Relay_Log_Space: 155
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 2061
Last_IO_Error: error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 2
On master side:
mysql> show master status;
+-------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+-------------------+----------+--------------+------------------+-------------------+
| master-bin.000003 | 155 | myslave | mysql | |
+-------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
But slave is always unable to connect master, and reports errors in /var/log/mysql/error.log as below:
2018-11-11T13:51:34.706080Z 22 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 1, Error_code: MY-002061
2018-11-11T13:52:34.708404Z 22 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 2, Error_code: MY-002061
2018-11-11T13:53:34.710593Z 22 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 3, Error_code: MY-002061
2018-11-11T13:54:34.713441Z 22 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 4, Error_code: MY-002061
2018-11-11T13:55:34.716135Z 22 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 5, Error_code: MY-002061
and, after 99 times retires, error_code changes to MY-001129:
2018-11-11T11:24:02.802629Z 11 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 99, Error_code: MY-002061
2018-11-11T11:25:02.804339Z 11 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 100, Error_code: MY-001129
2018-11-11T11:26:02.806537Z 11 [ERROR] [MY-010584] [Repl] Slave I/O for channel '': error connecting to master 'repl_1#172.16.0.5:3306' - retry-time: 60 retries: 101, Error_code: MY-001129
On master side, /var/log/mysql/error.log shows nothing. The tcpdump on master side shows that it(172.16.0.5) has received the login request from slave(172.16.0.4) with user "repl_1". But it replies with an "auth switch request". Then the slave initiated termination of connection with "[FIN, ACK]".
I am pretty sure the password of "repl_1" was the same when I created the user on master, and when I executed "change master to ....MASTER_PASSWORD...".
tcpdump

MySQL slave database stopped replication."Last_Error: Error 'Unknown database 'sen'' on query. Default"

the master:
the slave:
Current Environment
sen#ubuntu:~$ uname -a
Linux ubuntu 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
sen#ubuntu:~$ mysql -V
mysql Ver 14.14 Distrib 5.5.32, for Linux (x86_64) using readline 5.1
Current Status
Master, 3306:
my.cnf : https://www.dropbox.com/s/nmelrjhrp6wn2oj/my_3306.cnf?dl=0
show processlist:
Master has sent all binlog to slave; waiting for binlog to be updated
sen#ubuntu:/data/3306$ sudo /application/mysql/bin/mysqlbinlog mysql-bin.000007
[sudo] password for sen:
/*!50530 SET ##SESSION.PSEUDO_SLAVE_MODE=1*/;
/*!40019 SET ##session.max_insert_delayed_threads=0*/;
/*!50003 SET #OLD_COMPLETION_TYPE=##COMPLETION_TYPE,COMPLETION_TYPE=0*/;
DELIMITER /*!*/;
# at 4
# #161106 10:39:40 server id 1 end_log_pos 107 Start: binlog v 4, server
# v 5.5.32-log created 161106 10:39:40 at startup
# # Warning: this binlog is either in use or was not closed properly.
# ROLLBACK/*!*/;
# BINLOG '
# 7JceWA8BAAAAZwAAAGsAAAABAAQANS41LjMyLWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
# AAAAAAAAAAAAAAAAAADslx5YEzgNAAgAEgAEBAQEEgAAVAAEGggAAAAICAgCAA==
# '/*!*/;
# DELIMITER ;
# # End of log file
# ROLLBACK /* added by mysqlbinlog */;
# /*!50003 SET COMPLETION_TYPE=#OLD_COMPLETION_TYPE*/;
# /*!50530 SET ##SESSION.PSEUDO_SLAVE_MODE=0*/;
#
Slave,3307:
my.cnf : https://www.dropbox.com/s/5t6mruzuo3wo1l7/my_3307.cnf?dl=0
show processlist: Waiting for master to send event
mysql> show slave status \G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.80.2
Master_User: rep
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000007
Read_Master_Log_Pos: 107
Relay_Log_File: relay-bin.000011
Relay_Log_Pos: 253
Relay_Master_Log_File: mysql-bin.000003
Slave_IO_Running: Yes
Slave_SQL_Running: No
Replicate_Do_DB:
Replicate_Ignore_DB: mysql
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 1049
Last_Error: Error 'Unknown database 'sen'' on query. Default
database: 'sen'. Query: 'create table t(id int(11), primary key(id))'
Skip_Counter: 0
Exec_Master_Log_Pos: 107
Relay_Log_Space: 2873
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 1049
Last_SQL_Error: Error 'Unknown database 'sen'' on query. Default
database: 'sen'. Query: 'create table t(id int(11), primary key(id))'
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
1 row in set (0.00 sec)
ERROR:
No query specified
the relay bin log:
sen#ubuntu:/data/3307$ sudo /application/mysql/bin/mysqlbinlog relay-bin.000020
/*!50530 SET ##SESSION.PSEUDO_SLAVE_MODE=1*/;
/*!40019 SET ##session.max_insert_delayed_threads=0*/;
/*!50003 SET #OLD_COMPLETION_TYPE=##COMPLETION_TYPE,COMPLETION_TYPE=0*/;
DELIMITER /*!*/;
# at 4
# #161106 17:00:43 server id 2 end_log_pos 107 Start: binlog v 4, server
# v 5.5.32 created 161106 17:00:43
# BINLOG '
# O/EeWA8CAAAAZwAAAGsAAAAAAAQANS41LjMyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
# AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAVAAEGggAAAAICAgCAA==
# '/*!*/;
# # at 107
# #700101 8:00:00 server id 1 end_log_pos 0 Rotate to mysql-bin.000007
# pos: 107
# # at 150
# #161106 10:39:40 server id 1 end_log_pos 0 Start: binlog v 4, server
# v 5.5.32-log created 161106 10:39:40
# BINLOG '
# 7JceWA8BAAAAZwAAAAAAAAAAAAQANS41LjMyLWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
# AAAAAAAAAAAAAAAAAAAAAAAAEzgNAAgAEgAEBAQEEgAAVAAEGggAAAAICAgCAA==
# '/*!*/;
# DELIMITER ;
# # End of log file
# ROLLBACK /* added by mysqlbinlog */;
# /*!50003 SET COMPLETION_TYPE=#OLD_COMPLETION_TYPE*/;
# /*!50530 SET ##SESSION.PSEUDO_SLAVE_MODE=0*/;
#
the error log:
$ less -R mysql_3307.err
161105 19:39:04 InnoDB: Waiting for the background threads to start
161105 19:39:05 InnoDB: 5.5.32 started; log sequence number 1601853
161105 19:39:05 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3307
161105 19:39:05 [Note] - '0.0.0.0' resolves to '0.0.0.0';
161105 19:39:05 [Note] Server socket created on IP: '0.0.0.0'.
161105 19:39:05 [Warning] 'user' entry 'root#ubuntu' ignored in --skip-name-resolve mode.
161105 19:39:05 [Warning] 'user' entry '#ubuntu' ignored in --skip-name-resolve mode.
161105 19:39:05 [Warning] 'proxies_priv' entry '# root#ubuntu' ignored in --skip-name-resolve mode.
161105 19:39:05 [Note] Slave SQL thread initialized, starting replication in log 'mysql-bin.000003' at position 107, relay log '/data/3307/relay-bin.000011' position: 253
161105 19:39:05 [ERROR] Slave I/O: error connecting to master 'rep#192.168.80.2:3306' - retry-time: 60 retries: 86400, Error_code: 2003
161105 19:39:05 [ERROR] Slave SQL: Error 'Unknown database 'sen'' on query. Default database: 'sen'. Query: 'create table t(id int(11), primary key(id))', Error_code: 1049
161105 19:39:05 [Warning] Slave: Unknown database 'sen' Error_code: 1049
161105 19:39:05 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'mysql-bin.000003' position 107
161105 19:39:05 [Note] Event Scheduler: Loaded 0 events
161105 19:39:05 [Note] /application/mysql-5.5.32/bin/mysqld: ready for connections. Version: '5.5.32' socket: '/data/3307/mysql.sock' port: 3307 Source distribution
161105 19:40:05 [Note] Slave I/O thread: connected to master 'rep#192.168.80.2:3306',replication started in log 'mysql-bin.000004' at position 317
I have searched by google, found
https://bugs.mysql.com/bug.php?id=19344
I have done
1.
restart the two mysql process 3306 and 3307
2.
on slave database:
stop slave;
start slave;
But it doesn't work.(mei shen me luan yong)
Please do me a favor!
tks.
by sen.

Mariadb 10 slave won't sync

Slave won't sync with master No Error everything is fine..
show all slaves status
Connection_name: godzilla
Slave_SQL_State: Slave has read all relay log; waiting for the slave I/O thread to update it
Slave_IO_State: Waiting for master to send event
Master_Host: xxx.xxx.xxx.xxx
Master_User: slavexxx
Master_Port: 3306
Connect_Retry: 10
Master_Log_File: CentOS-72-64-minimal-bin.000005
Read_Master_Log_Pos: 12457
Relay_Log_File: CentOS-72-64-minimal-relay-bin-euro#002dslot#002ecom.000002
Relay_Log_Pos: 1102
Relay_Master_Log_File: CentOS-72-64-minimal-bin.000005
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 12457
Relay_Log_Space: 1436
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 6
Master_SSL_Crl:
Master_SSL_Crlpath:
Using_Gtid: No
Gtid_IO_Pos:
Retried_transactions: 0
Max_relay_log_size: 1073741824
Executed_log_entries: 679
Slave_received_heartbeats: 0
Slave_heartbeat_period: 1800.000
Gtid_Slave_Pos: 0-5-276329635
On my slave server i have another 5 Databases with Different Master IP its working fine today i want to connect new master and slave won't sync No Errors ...
This steps i use to setup SLAVE
ok after 2 days i find the problem
On slave my.cnf i remove this option
[mysqld]
#gtid-ignore-duplicates=ON

mysql replication and GRANT that doesn't quite grant

I am trying to set up mysql replication. All's well, but I see an error 1045 for the slave:
mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Connecting to master
Master_Host: <my.host.ip>
Master_User: slave_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 107
Relay_Log_File: mysqld-relay-bin.000003
Relay_Log_Pos: 4
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Connecting
Slave_SQL_Running: Yes
Replicate_Do_DB: my_db_name
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 107
Relay_Log_Space: 107
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 1045
Last_IO_Error: error connecting to master 'slave_user#my.host.ip:3306' - retry-time: 60 retries: 86400
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 0
1 row in set (0.00 sec)
mysql>
I try connecting manually, it starts out fine, but I've a permission problem:
$ mysql -h my-host-name -u slave_user -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 46
Server version: 5.5.49-0ubuntu0.14.04.1-log (Ubuntu)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+
1 row in set (0.00 sec)
mysql> use my_db_name;
ERROR 1044 (42000): Access denied for user 'slave_user'#'%.my-domain.com' to database 'my_db_name'
mysql>
But on the master, I created the slave user thus, which seems to be more than adequate:
CREATE USER 'slave_user'#'%.my-domain.com'
IDENTIFIED BY 'changeme';
GRANT REPLICATION SLAVE ON *.* TO 'slave_user'#'%.my-domain.com';
(In passing: I think I would have preferred GRANT REPLICATION SLAVE ON my_db_name.* TO 'slave_user'#'%.my-domain.com';, but that is an error, and I should get this working first.)
mysql> select * from mysql.user where user = 'slave_user'\G
*************************** 1. row ***************************
Host: %.my-domain.com
User: slave_user
Password: *la-de-da-da-nothing-to-see-here-hashed
Select_priv: N
Insert_priv: N
Update_priv: N
Delete_priv: N
Create_priv: N
Drop_priv: N
Reload_priv: N
Shutdown_priv: N
Process_priv: N
File_priv: N
Grant_priv: N
References_priv: N
Index_priv: N
Alter_priv: N
Show_db_priv: N
Super_priv: N
Create_tmp_table_priv: N
Lock_tables_priv: N
Execute_priv: N
Repl_slave_priv: Y
Repl_client_priv: N
Create_view_priv: N
Show_view_priv: N
Create_routine_priv: N
Alter_routine_priv: N
Create_user_priv: N
Event_priv: N
Trigger_priv: N
Create_tablespace_priv: N
ssl_type:
ssl_cipher:
x509_issuer:
x509_subject:
max_questions: 0
max_updates: 0
max_connections: 0
max_user_connections: 0
plugin:
authentication_string: NULL
1 row in set (0.00 sec)
mysql>
Any suggestions?