내 MySQL 로그에 중복 오류가 표시됩니다.
141223 5:47:21 [ERROR] Invalid (old?) table or database name 'lost+found'
이름이 지정된 데이터베이스가 #mysql50#lost+found
있지만 삭제할 수없는 것 같습니다.
mysql> show databases;
+---------------------+
| Database |
+---------------------+
| information_schema |
| maindatabas |
| maindatabas_help |
| maindatabas_tracker |
| gitlabhq_production |
| locations |
| #mysql50#lost+found |
| mysql |
| osticket |
| performance_schema |
+---------------------+
10 rows in set (0.00 sec)
mysql> DROP DATABASE `#mysql50#lost+found`;
ERROR 1008 (HY000): Can't drop database '#mysql50#lost+found'; database doesn't exist
mysql>
Centos 6의 IUS Community Project에서 배포 한 서버 버전 : 5.5.40을 운영하고 있습니다.
MySQL 당 CentOS 6x (5x 아님)에서 매우 느리게 실행되고 내 datadir은 ext3에 barrier = 0 옵션을 사용합니다.
이 오류의 원인은 무엇이며 어떻게 제거 할 수 있습니까?