phpmyadmin 에서
#145 - Table './DB/xe_documents' is marked as crashed and should be repaired
centos mysqld.log 에서
[ERROR] /usr/local/mysql/libexec/mysqld: Table './DB/xe_documents' is marked as crashed and should be repaired
이런식으로 나오면서 싸이트가 망가지거나 심할경우 mysqld 서버가 죽어 버리는 경우가 있습니다.
이럴때는 mysql> repair table xe_documents; 라는 명령어가 있습니다.
근데 에러가 나올때가 있습니다. 그것은 mysql 접속했을때 해당 DB명을 안불러왔기 때문에...
다시 mysql -u root -p DB 명을 입력후 다시 mysql 에 접속합니다.
repair table xe_documents; 명령어를 치면 아래와 같이~ 성공했다는 메세지가 나옵니다.