Designing a recovery plan for MySQL

2001-09-12 Thread adam

I got an idea and thought i would ask around about a recovery plan about
databases? Currently all i do is dump the databases on to a share on an
NT box thru a SMB share from the RH 7.1 Linux DB server. The NT box is a
Compaq CL1850 which is 2 Compaq 1850 server with a shared SCSI array.
The NT box is backed up on a 6 hour interval. I was just wondering any
other ideas. 


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Designing a recovery plan for MySQL

2001-09-12 Thread Dan Nelson

In the last episode (Sep 12), adam said:
 I got an idea and thought i would ask around about a recovery plan
 about databases? Currently all i do is dump the databases on to a
 share on an NT box thru a SMB share from the RH 7.1 Linux DB server.
 The NT box is a Compaq CL1850 which is 2 Compaq 1850 server with a
 shared SCSI array. The NT box is backed up on a 6 hour interval. I
 was just wondering any other ideas.

How about simply backing up the mysql server itself, instead of copying
the data over the wire to another machine?  If all you do is inserts,
and can tolerate having to rebuild the indexes on recovery, you don't
even need to take the system down.  Just back up the raw database
files.  If you want a consistent snapshot, you can mysqldump to a local
file which you then back up, or create a slave mysqld for backup
purposes that you shut down during the backup.  That way your main
databse is always active.

-- 
Dan Nelson
[EMAIL PROTECTED]

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php