A super detailed tutorial: springboot integrates mybatis plus>>>
Slave_ IO_ R unning:No Why
Slave_ IO_ R unning:Connecting Why
Slave_ IO_ R unning:No Why
After starting slave, I/O thread is not started, and slave is displayed_ IO_ R unning:No
The possible reasons are as follows:
1
Network connection problem, check whether it can ping
Log bin file input error, go to the master server show master status to check (note here that the master-slave time must be synchronized, otherwise it is easy to generate multiple log bin files, use ntpdate command to synchronize the time)
In addition, there may be configuration errors in etc/my.cnf
Slave_ IO_ R unning:Connecting Why
When the slave server specifies the master server, the password is wrong, causing it to be connected all the time
we create a management account when the master server is authorized, and set a password
such as: MySQL > grant replication slave on . to ‘myslave’@‘20.0.0.%’ identified by ‘abc123’; // You must remember the user, password, etc.
when setting parameters
specify master server and related parameters in slave server
MySQL > change master to master_ Host =’20.0.0.12 ‘,// specify the master server address
– > master_ User =’myslave ‘,// master server management account
– > master_ Password =’123456 ‘,// account password
– > master_ log_ File =’master bin. 00000 2 ‘,// note that this file must be checked again in the master to ensure consistency. It is not possible to copy the slave1 statement completely
– > master_ log_ pos=447; // The location of the binary file can be viewed in the master server show master status
when inputting the password, the input error results in slave_ IO_ R unning:Connecting
Similar Posts:
- [Solved] Mysql Got fatal error 1236 from master when reading data from binary log: ‘Could not find first log file name in binary log index file’
- How to Solve MYSQL ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository
- ERROR 3021 (HY000): This operation cannot be performed with a running slave io thread; run STOP SLAVE IO_THREAD FOR CHANNEL ” first.
- mysql Slave_IO_Running:NO [How to Solve]
- [Solved] Last_IO_Error: error connecting to master ‘[email protected]:3306’ – retry-time: 60 …
- ZBx appears in ZABBIX custom key_ NOTSUPPORTED: Unsupported item key.
- [Solved] MySql Host is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts…
- MYSQL: You must reset your password using ALTER USER statement before executing this statement.[How to Solve]
- MySQL Use innobackupex to backup and recovery error [How to Solve]
- [Solved] MYSQL ERROR 2059 (HY000): Authentication plugin ‘caching_sha2_password’ cannot be loaded: /usr/lib64/mysql/plugin/caching_sha2_password.so: cannot open shared object file: No such file or directory