Instalando o MySQL Enterprise Backup 3.7

Posted by Emerson on 20:08 with 2 comments
Olá pessoal !


Instalando o MySQL em ambiente Oracle Linux


Anteriormente instalamos o Oracle MySQL Server 5.6.
Hoje irei mostrar como instalar o MySQL Enterprise Backup.Uma ferramenta que faz parte dos produtos oferecidos pela Oracle.

MySQL Enterprise Backup


O MySQL Enterprise Backup é uma ferramenta que realiza as operações de backup online para bancos de dados MySQL. 
Uma arquitetura projetada para a realização backups eficientes e confiáveis de tabelas criadas pelo mecanismo de armazenamento InnoDB. Para completar, ele também pode fazer backup de tabelas MyISAM e outros mecanismos de armazenamento.


Além de executar Hot backup sem bloqueios dos backups que estão sendo executados, os backups completos pode ser realizada em todos os dados InnoDB, sem interromper as consultas ou atualizações.
Backups incrementais e parciais também são suportados, onde apenas os dados que foram alterados a partir de um backup anterior.

1 - Efetuar download do arquivo no site.(Necessário cadastro)
https://edelivery.oracle.com/


2 - Descompactar o arquivo.

[root @oralinux  tmp]# unzip mysqlenterprisebackup.zip
  inflating: meb-3.6-rhel5.i386.rpm

3 - Efetuar a instalação do arquivo rpm.
[root@oralinux u01]# rpm -Uvh meb-3.6-rhel5.i386.rpm

Preparando...               ########################################### [100%]
   1:meb                    ########################################### [100%]
[root@oralinux u01]#


4 - Acessando o MySQL Enterprise Backup
[root@oralinux bin]# ls -lah

total 940K
drwxr-xr-x 2 root root 4,0K Abr  2 22:19 .
drwxr-xr-x 3 root root 4,0K Abr  2 22:19 ..
lrwxrwxrwx 1 root root   11 Abr  2 22:19 ibbackup -> mysqlbackup
lrwxrwxrwx 1 root root   11 Abr  2 22:19 innobackup -> mysqlbackup
-rwxr-xr-x 1 root root 927K Jul 20  2011 mysqlbackup
[root@oralinux bin]#



mysql/meb-3.6/bin/mysqlbackup --help

Usage:
  mysqlbackup [STD-OPTIONS]
              [CONNECTION-OPTIONS]
              [SERVER-REPOSITORY-OPTIONS]
              [BACKUP-REPOSITORY-OPTIONS]
              [--compress] [--compress-level=LEVEL]
              [--include=REGEXP] [--with-timestamp] [--slave-info]
              [--databases=LIST] [--databases-list-file=PATH]
              [--suspend-at-end] [--sleep=MS]
              [--exec-when-locked='utility arg1 arg2 ...']
              [--incremental --start-lsn=LSN --incremental-backup-dir=PATH]
              [--only-known-file-types] [--only-innodb]
              [--no-history-logging] [--no-locking]
              [--backup-dir=PATH]
              [--comments=STRING]
              [--comments-file=PATH]
              [--backup-image=IMAGE]
              [--sbt-database-name=NAME]
              [--sbt-lib-path=PATH]
              backup | backup-and-apply-log | backup-to-image

  mysqlbackup [STD-OPTIONS]
              [--limit-memory=MB] [--uncompress] [--backup-dir=PATH]
              apply-log

  mysqlbackup [STD-OPTIONS]
              [--incremental-backup-dir=PATH] [--backup-dir=PATH]
              [--limit-memory=MB]
              apply-incremental-backup

  mysqlbackup [STD-OPTIONS]
              [SERVER-REPOSITORY-OPTIONS]
              [--backup-dir=PATH]
              copy-back

  mysqlbackup [STD-OPTIONS]
              [--backup-image=IMAGE] [--backup-dir=PATH]
              image-to-backup-dir

  mysqlbackup [STD-OPTIONS]
              [--backup-dir=PATH] [--backup-image=IMAGE]
              backup-dir-to-image
  mysqlbackup [STD-OPTIONS]
              [--backup-image=IMAGE] [--backup-dir=PATH]
              image-to-backup-dir

  mysqlbackup [STD-OPTIONS]
              [--backup-dir=PATH] [--backup-image=IMAGE]
              backup-dir-to-image

  mysqlbackup [STD-OPTIONS]
              [--backup-image=IMAGE] [--src-entry=PATH]
              list-image

  mysqlbackup [STD-OPTIONS]
              [--backup-image=IMAGE]
              [--backup-dir=PATH]
              [--src-entry=PATH] [--dst-entry=PATH]
              extract

 Standard Options [STD-OPTIONS]:
 -------------------------------
  Following standard options may be given as the first argument(s):
    --print-defaults --no-defaults --defaults-file=PATH
    --defaults-extra-file=PATH --defaults-group-suffix=string

  Other standard options are:
  --help          Display this help.
  --version       Display version information.
  --verbose       Print more verbose information.
  --debug         Print debug information.
  --force         By default, both backup and restore operation will refuse
                  to overwrite data/log files. The --force option can be
                  used to force overwriting the destination file.
.....


Pronto! A instalação estar concluída.


Nos demais posts irei demonstrar como configurar os arquivos para fazer backup através do MySQL Enterprise Backup.



Até a proxima!


Emerson Martins 




Fonte:
http://www.mysql.com/

Categories: