How can i retreive a mysql database from a hard drive?

9

2

My mythtv box crashed because of a corrupted hard drive. I can see my data when connected it to another computer. I need to know how I can retrieve the database so I can load it on my new drive.

Jeremey

Posted 2010-03-15T01:19:20.920

Reputation:

1What operating system – Unfundednut – 2010-03-15T01:44:58.117

Answers

2

Use the mysqldump utility :). This option allows you to export the database instead of merely copying the files.

http://gd.tuwien.ac.at/linuxcommand.org/man_pages/mysqldump1.html

jrc03c

Posted 2010-03-15T01:19:20.920

Reputation: 7 626

Actually, I'm not sure that mysqldump will work on a machine that's not running the mysql server; never tried it. – jrc03c – 2010-07-08T18:54:06.913

I already tried but mysqldump doesn't work without mysql server running which is not going to happen in an external hdd. – coding_idiot – 2013-04-14T06:11:19.843

1

If you are using linux then the databases are stored in /var/db/ generally. If its mysql /var/db/mysql/.

Unfundednut

Posted 2010-03-15T01:19:20.920

Reputation: 6 650

1/var/lib/mysql is also common, or peek in /etc/my.cnf – nos – 2010-06-28T12:44:14.523

1

Go inside the MySQL db directory of the hard drive, there will be some files there for each database. Retrieve them.

Here is the tricky part. You are going to need to get the same version of mySQL from the one that was in the dead box. Once you know what version it was, install it in a new rig and copy over the files.

After that you can use php myadmin or the mysql cli interface to make a proper export.

Ray Foss

Posted 2010-03-15T01:19:20.920

Reputation: 884

0

If you can still read from the HD try to copy the db files to a another system running mysql. If the db files are not corrupted you should be able to access the Database.

The db files should reside inside a folder called [db_name]

Jerome

Posted 2010-03-15T01:19:20.920

Reputation: 91

I already tried this, but this didn't worked. Many of them were missing. – coding_idiot – 2013-04-14T06:11:43.483

-1

Use a data retrieval service if the information is very valuable to you, as any attempt at DIY data retrieval can lessen the chances of a later attempt.

That said, using GetDataBack is a good bet for NTFS or FAT drives (they have two different versions. Here is a guide to help you with Linux HD's (actually the advice will work with any type of HD, but for FAT and NTFS formatted drives you can use GetDataBack).

Hope this helps!

ssvarc

Posted 2010-03-15T01:19:20.920

Reputation: 720

He said it's MythTV, and that runs on Linux. Recommending file recovery software for FAT/NTFS filesystems is kind of pointless... – Alex – 2010-03-15T06:27:43.300

+1ing because he did put a link for Linux HDs as well. – Hello71 – 2010-06-27T16:18:05.710