MySQL - mysqldump: Got error: 1016: Can't open file: './exampledb/xxx.frm' (errno: 24) when using LOCK TABLES
Want to support HowtoForge? Become a subscriber!
Error: MySQL - mysqldump: Got error: 1016: Can't open file: './exampledb/xxx.frm' (errno: 24) when using LOCK TABLESYou try to create a MySQL database dump and get the following error: mysqldump -u root -pmysecretpassword --opt exampledb > exampledb.sql root@server11:/tmp/mysql# mysqldump -u root -pmysecretpassword --opt exampledb > exampledb.sql
SolutionAdd --lock-tables=false to the mysqldump command: mysqldump -u root -pmysecretpassword --opt exampledb --lock-tables=false > exampledb.sql
|



Recent comments
13 hours 57 min ago
15 hours 32 min ago
19 hours 53 min ago
23 hours 43 min ago
1 day 11 hours ago
1 day 17 hours ago
1 day 20 hours ago
1 day 21 hours ago
1 day 21 hours ago
1 day 22 hours ago