MySQL 错误“无法读取目录”

MySQL 错误“无法读取目录”

当我运行 SHOW TABLES 查询时出现以下错误,

mysql> show tables;
ERROR 1018 (HY000): Can't read dir of './list/' (errno: 12)

谁能解释一下这是什么原因造成的?

我的数据目录是 /opt/data。

谢谢。

答案1

errno: 12通常表示 Out of memory出现错误。
请检查可用内存。

相关内容