MYSQL 복제 실패 - The slave I/O thread stops because a fatal error is encountered when it try to get the value of SERVER_ID variable from master
DB Troubleshooting/MySQL 2023. 2. 23. 13:48
현상
Last_IO_Error: The slave I/O thread stops because a fatal error is encountered when it try to get the value of SERVER_ID variable from master. Error:
해소
server_uuid master 와slave를 다르게 설정
auto.cnf 파일명 삭제
mv auto.cnf auto.cnf.bak
my.cnf 파일 수정
[mysqld]
server-id = 111 --> 222
mysql 재시작
systemctl restart myslqd
'DB Troubleshooting > MySQL' 카테고리의 다른 글
MySQL 접속 에러 error while loading shared libraries: libssl.so.1.1 / libcrypto.so.1.1 (0) | 2022.08.26 |
---|---|
mysql에서 잘못된 numa 사용으로 swap 발생하여 성능 지연 발생 (0) | 2022.08.02 |
MySQL - Access denied; you need (at least one of) the SYSTEM_USER privilege(s) for this operation (0) | 2022.04.05 |
MySQL db down - btrfs filesystem full (0) | 2022.04.04 |
MySQL 고비용 쿼리로 인한 Memory 고갈 후 swap 사용으로 지연 처리 (0) | 2022.03.17 |