public inbox for gentoo-server@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-server] MySQL Backup
@ 2012-04-15 17:56 Gerry Smith
  2012-04-15 17:58 ` kojiro
  2012-04-15 18:10 ` Tanner Danzey
  0 siblings, 2 replies; 6+ messages in thread
From: Gerry Smith @ 2012-04-15 17:56 UTC (permalink / raw
  To: gentoo-server

What's recommended for MySQL backups these days ?
I've been using zmanda, which I found very easy to install and use,
but it doesn't seem to be in portage anymore ?

Thanks,

Gerry Smith



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-server] MySQL Backup
  2012-04-15 17:56 [gentoo-server] MySQL Backup Gerry Smith
@ 2012-04-15 17:58 ` kojiro
  2012-04-15 18:10 ` Tanner Danzey
  1 sibling, 0 replies; 6+ messages in thread
From: kojiro @ 2012-04-15 17:58 UTC (permalink / raw
  To: gentoo-server, gentoo-server

[-- Attachment #1: Type: text/plain, Size: 253 bytes --]

Tar+ssh

Gerry Smith <smith.gerry@gmail.com> wrote:

What's recommended for MySQL backups these days ?
I've been using zmanda, which I found very easy to install and use,
but it doesn't seem to be in portage anymore ?

Thanks,

Gerry Smith


[-- Attachment #2: Type: text/html, Size: 593 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-server] MySQL Backup
  2012-04-15 17:56 [gentoo-server] MySQL Backup Gerry Smith
  2012-04-15 17:58 ` kojiro
@ 2012-04-15 18:10 ` Tanner Danzey
  2012-04-16 15:26   ` Brian Kroth
  1 sibling, 1 reply; 6+ messages in thread
From: Tanner Danzey @ 2012-04-15 18:10 UTC (permalink / raw
  To: gentoo-server

[-- Attachment #1: Type: text/plain, Size: 435 bytes --]

I usr MySQL's "mysqldump" and a daily cron task that zips it up and sends
it to my NFS backup drive in dated folders. It works just fine for my
minute data set.
On Apr 15, 2012 1:04 PM, "Gerry Smith" <smith.gerry@gmail.com> wrote:

> What's recommended for MySQL backups these days ?
> I've been using zmanda, which I found very easy to install and use,
> but it doesn't seem to be in portage anymore ?
>
> Thanks,
>
> Gerry Smith
>
>

[-- Attachment #2: Type: text/html, Size: 724 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [gentoo-server] MySQL Backup
@ 2012-04-15 19:40 Jesse Pasichnyk
  0 siblings, 0 replies; 6+ messages in thread
From: Jesse Pasichnyk @ 2012-04-15 19:40 UTC (permalink / raw
  To: gentoo-server@lists.gentoo.org

[-- Attachment #1: Type: text/plain, Size: 58 bytes --]

I run backuppc, calling MySQL dump as a pre-backup task...

[-- Attachment #2: Type: text/html, Size: 1792 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-server] MySQL Backup
       [not found] <20120415194144.C6BE9E0DBB@pigeon.gentoo.org>
@ 2012-04-15 21:51 ` Robert Bridge
  0 siblings, 0 replies; 6+ messages in thread
From: Robert Bridge @ 2012-04-15 21:51 UTC (permalink / raw
  To: gentoo-server

We use xtrabackup from percona, with tar to generate backup of the
running mysql servers in a fraction of the time it would take to use
mysqldump. Restoration is than just a case of copy the uncompressed
tarball into place and starting mysql.

It's a pain when it comes to restoring individual tables, but for a
full system backup it's fast and easy.

RobbieAB.

On 15 April 2012 20:40, Jesse Pasichnyk <jesse@pasichnyk.net> wrote:
> I run backuppc, calling MySQL dump as a pre-backup task...
> ________________________________
> From: Tanner Danzey
> Sent: 4/15/2012 10:56 AM
> To: gentoo-server@lists.gentoo.org
> Subject: Re: [gentoo-server] MySQL Backup
>
>
> I usr MySQL's "mysqldump" and a daily cron task that zips it up and sends it
> to my NFS backup drive in dated folders. It works just fine for my minute
> data set.
>
> On Apr 15, 2012 1:04 PM, "Gerry Smith" <smith.gerry@gmail.com> wrote:
>>
>> What's recommended for MySQL backups these days ?
>> I've been using zmanda, which I found very easy to install and use,
>> but it doesn't seem to be in portage anymore ?
>>
>> Thanks,
>>
>> Gerry Smith
>>
>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [gentoo-server] MySQL Backup
  2012-04-15 18:10 ` Tanner Danzey
@ 2012-04-16 15:26   ` Brian Kroth
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Kroth @ 2012-04-16 15:26 UTC (permalink / raw
  To: Tanner Danzey; +Cc: gentoo-server

I use this for some very large data sets as well.  The trouble is that 
to do it right you have to lock the tables while it's running, so I 
actually run it off replication slaves instead.  One of the nice things 
of doing things this way is that you can use perl or your other favorite 
text processing tool to parse out individual databases, tables, views, 
etc.  That's important in a hosting environment and usually more 
difficult/costly with raw file backups.

Brian

Tanner Danzey <arkaniad@gmail.com> 2012-04-15 13:10:
>   I usr MySQL's "mysqldump" and a daily cron task that zips it up and sends
>   it to my NFS backup drive in dated folders. It works just fine for my
>   minute data set.
>
>   On Apr 15, 2012 1:04 PM, "Gerry Smith" <[1]smith.gerry@gmail.com> wrote:
>
>     What's recommended for MySQL backups these days ?
>     I've been using zmanda, which I found very easy to install and use,
>     but it doesn't seem to be in portage anymore ?
>
>     Thanks,
>
>     Gerry Smith
>
> References
>
>   Visible links
>   1. mailto:smith.gerry@gmail.com



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-04-16 15:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-15 17:56 [gentoo-server] MySQL Backup Gerry Smith
2012-04-15 17:58 ` kojiro
2012-04-15 18:10 ` Tanner Danzey
2012-04-16 15:26   ` Brian Kroth
  -- strict thread matches above, loose matches on Subject: below --
2012-04-15 19:40 Jesse Pasichnyk
     [not found] <20120415194144.C6BE9E0DBB@pigeon.gentoo.org>
2012-04-15 21:51 ` Robert Bridge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox