Technology related solutions, tips, tricks, and other interesting topics
In: General IT Info
16 Feb 2009If you try to backup a MySQL database with a lot of tables using mysqldump, you may get an error similar to the following:
mysqldump: Got error: 29: File './test/test.MYD' not found (Errcode: 24) when using LOCK TABLES
To fix the problem you can add the –skip-lock-tables option to your mysqldump command line like so:
mysqldump --skip-lock-tables -u root -p db_foo > db_foo_backup_13FEB09.sql
Or you can permanently fix the problem by increasing the number of open files allowed by your MySQL service by specifying a sufficiently large value for the open_files_limit setting in your MySQL server configuration file. The open_files_limit needs to be placed under the [mysqld] section of the MySQL server configuration file. On CentOS 5 the default location of the MySQL service configuration file is /etc/my.cnf. Try specifying a value of 8192 like so:
[mysqld] open_files_limit = 8192
After you make the change to the MySQL server configuration file you’ll need to restart the MySQL service to put the changes into effect. On CentOS 5 you can restart the MySQL service with the following command:
service mysqld restart

This blog is about technology related topics. It will primarily contain problems and solutions to IT problems that I encounter on a day-to-day basis. In addition interesting things I come across either on or off the internet will be posted here as well. I will also include step-by-step tutorials to common tasks people may need to do with their computers.
1 Response to Mysqldump Error 29
JAUHDIMATA
June 7th, 2009 at 4:07 am
good solved..
thx