Mysql Binary Log삭제 수행되는 쿼리가 저장되는 파일, 기본적으로 binary log파일이 생성 된다.binary log를 쌓지 않아도 되지만, 리플리케이션 문제 해결을 위해 binary log를 추출 한다. 삭제 방법# db 데이터 저장 경로로 들어가 rm 명령어로 절대 삭제 하지 말것.(중요) db안에 index를 가지고 있어서 파일 삭제 시 index가 맞지 않음. 반드시 db터미널로 접근 해서 삭제 진행!! > mysql -uroot -p # db접근 > show binary logs; # 바이너리 로그 조회> purgr master logs to '로그 파일명'; binary로그 저장 주기 설정> set global expire_logs_day=3; # 3일로 설정# my.cnf 파일..
테이블 생성시 지속적으로 구문 에러가 발생하였다.CREATE TABLE test_tables ( id int(10) NOT NULL AUTO_INCREMENT, name CHAR(10) NOT NULL, range int(10) NOT NULL DEFAULT '0', PRIMARY KEY (id)); 원인은 range가 예약어 이기 때문에 escape처리해야 한다.CREATE TABLE test_tables ( id int(10) NOT NULL AUTO_INCREMENT, name CHAR(10) NOT NULL, `range` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (id)); `range` 를 묶어 처리하니 정상적으로 생성되었다.
160110 04:30:33 [ERROR] Error reading packet from server: Lost connection to MySQL server during query ( server_errno=2013) 160110 04:30:33 [Note] Slave I/O thread: Failed reading log event, reconnecting to retry, log 'binlog.017528' position 90025355 160110 04:30:33 [ERROR] Slave I/O error reconnecting to master 'xxxx@xxxxx' -retry-time:60 retries: 86400, Error_code: 2003 160110 04:30:33 [Note]..
160104 16:27:32 [Warning] Slave SQL: Could not execute Update_rows event on table *****; Can't find record in '*****', Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event's master log mysql-replication-bin.000008, end_log_pos 682020111, Error_code: 1032 master서버에서 update이벤트가 발생하였으나 slave 서버 storage에 update를 반영하려고 하였으나 해당 row가 없어 출력되는 메시지 마스터서버와 슬레이브 서버 data불일치로 발생하는 에러 마스터 서버 data du..