is marked as crashed and should be repaired
mysql 에러 아래와 같이 발생하는 경우 대배분 테이블이 깨져서 에러가 발생하는 경우이다.
이럴경우 테이블을 리페어 처리하면 끝
1. mysql error log
1 2 3 |
131219 16:39:30 [ERROR] /usr/local/mysql/libexec/mysqld: Table './xinet/xe_session' is marked as crashed and should be repaired 131219 16:39:30 [ERROR] /usr/local/mysql/libexec/mysqld: Table './xinet/xe_session' is marked as crashed and should be repaired 131219 16:39:30 [ERROR] /usr/local/mysql/libexec/mysqld: Table './xinet/xe_session' is marked as crashed and should be repaired |
2. mysqlcheck 명령어로 repair 진행 mysqlcheck -u root -p –auto-repair -B 데이터베이스명
1 |
[root@localhost xinet]# mysqlcheck -u root -p --auto-repair -B xinet |