错误:MySQL - mysqldump:有错误:1016:无法打开文件:'./exampledb/xxx.frm'(errno:24)当使用LOCK TABLES
您尝试创建一个MySQL数据库转储并得到以下错误:
mysqldump -u root -pmysecretpassword --opt exampledb > exampledb.sql
root@server11:/tmp/mysql# mysqldump -u root -pmysecretpassword --opt exampledb > exampledb.sql
mysqldump: Got error: 1016: Can't open file: './exampledb/xxx.frm' (errno: 24) when using LOCK TABLES
root@server1:/tmp/mysql#
解
将-lock
-tables = false
添加到mysqldump
命令中:
mysqldump -u root -pmysecretpassword --opt exampledb --lock-tables=false > exampledb.sql