My MySQL log shows duplicated errors:
141223 5:47:21 [ERROR] Invalid (old?) table or database name 'lost+found'
I have a database named #mysql50#lost+found
but I cannot seem to delete it.
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>
I am operating Server version: 5.5.40 Distributed by The IUS Community Project on Centos 6.
Per MySQL is running VERY slow on CentOS 6x (not 5x), my datadir is on ext3 with the barrier=0 option.
What is causing this error, and how can it be eliminated?