본문 바로가기

MySQL 에러 처리법20

4. replication 시 에러 발생 1. relay 로그를 제대로 읽지 못하는 경우 Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to.. 2010. 7. 12.
3.Trigger 관련 에러 처리법 1. MySQL 5.1 이상 서버에서 Trigger 생성이 안되는 경우 처리법 일반적으로 SUPER권한을 가지지 않은 account의 경우 다음과 같은 에러가 발생할 수 있다. Error Code : 1419 You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable) (0 ms taken) 에러를 발생하는 계정이 TRIGGER 권한을 가지고 있어도, 트리거 생성을 못하는 경우인것인데, 이것은 바로 위의 로그에서도 나왔듯이 log_bin_trust_function_creators 속성 때문에 발생한 것이다.. 2010. 4. 7.
2. ibbackup을 이용하여 백업 하는 경우에 발생하는 에러의 경우 ibbackup을 이용하여 백업을 진행하는 경우 다음과 같은 에러가 발생할 수 있다. 1. ibbackup: Error: log scan was only able to reach to ... ibbackup: Error: log scan was only able to reach to 100 800941568, ibbackup: but a checkpoint was at 100 800941715 ibbackup: This means that the database server has overwritten ibbackup: a part of the circular InnoDB log files before ibbackup ibbackup: was able to read it. ibbackup: To solv.. 2010. 3. 6.
1. MySQL 서버 접근이 안되는 경우? 1. Communication failure during handshake. Is there a server running on......과 같은 에러 발생시..... Client에 설치된 connector 버젼이 너무 낮은 경우에 발생하는 경우가 많다. connector 버젼을 올려보는게 어떨까나..?? 관련 url http://bugs.mysql.com/bug.php?id=1257 2010. 1. 8.