mysqlhotcopy.pl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:23k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #!/my/gnu/bin/perl -w
  2. use strict;
  3. use Getopt::Long;
  4. use Data::Dumper;
  5. use File::Basename;
  6. use File::Path;
  7. use DBI;
  8. =head1 NAME
  9. mysqlhotcopy - fast on-line hot-backup utility for local MySQL databases and tables
  10. =head1 SYNOPSIS
  11.   mysqlhotcopy db_name
  12.   mysqlhotcopy --suffix=_copy db_name_1 ... db_name_n
  13.   mysqlhotcopy db_name_1 ... db_name_n /path/to/new_directory
  14.   mysqlhotcopy db_name./regex/
  15.   mysqlhotcopy db_name./^(foo|bar)/
  16.   mysqlhotcopy db_name./~regex/
  17.   mysqlhotcopy db_name_1./regex_1/ db_name_1./regex_2/ ... db_name_n./regex_n/ /path/to/new_directory
  18.   mysqlhotcopy --method='scp -Bq -i /usr/home/foo/.ssh/identity' --user=root --password=secretpassword 
  19.          db_1./^nice_table/ user@some.system.dom:~/path/to/new_directory
  20. WARNING: THIS PROGRAM IS STILL IN BETA. Comments/patches welcome.
  21. =cut
  22. # Documentation continued at end of file
  23. my $VERSION = "1.12";
  24. my $opt_tmpdir = $ENV{TMPDIR} || "/tmp";
  25. my $OPTIONS = <<"_OPTIONS";
  26. $0 Ver $VERSION
  27. Usage: $0 db_name[./table_regex/] [new_db_name | directory]
  28.   -?, --help           display this helpscreen and exit
  29.   -u, --user=#         user for database login if not current user
  30.   -p, --password=#     password to use when connecting to server
  31.   -P, --port=#         port to use when connecting to local server
  32.   -S, --socket=#       socket to use when connecting to local server
  33.   --allowold           don't abort if target already exists (rename it _old)
  34.   --keepold            don't delete previous (now renamed) target when done
  35.   --noindices          don't include full index files in copy
  36.   --method=#           method for copy (only "cp" currently supported)
  37.   -q, --quiet          be silent except for errors
  38.   --debug              enable debug
  39.   -n, --dryrun         report actions without doing them
  40.   --regexp=#           copy all databases with names matching regexp
  41.   --suffix=#           suffix for names of copied databases
  42.   --checkpoint=#       insert checkpoint entry into specified db.table
  43.   --flushlog           flush logs once all tables are locked 
  44.   --resetmaster        reset the binlog once all tables are locked
  45.   --resetslave         reset the master.info once all tables are locked
  46.   --tmpdir=#        temporary directory (instead of $opt_tmpdir)
  47.   Try 'perldoc $0 for more complete documentation'
  48. _OPTIONS
  49. sub usage {
  50.     die @_, $OPTIONS;
  51. }
  52. my %opt = (
  53.     user => scalar getpwuid($>),
  54.     noindices => 0,
  55.     allowold => 0, # for safety
  56.     keepold => 0,
  57.     method => "cp",
  58.     flushlog    => 0,
  59. );
  60. Getopt::Long::Configure(qw(no_ignore_case)); # disambuguate -p and -P
  61. GetOptions( %opt,
  62.     "help",
  63.     "user|u=s",
  64.     "password|p=s",
  65.     "port|P=s",
  66.     "socket|S=s",
  67.     "allowold!",
  68.     "keepold!",
  69.     "noindices!",
  70.     "method=s",
  71.     "debug",
  72.     "quiet|q",
  73.     "mv!",
  74.     "regexp=s",
  75.     "suffix=s",
  76.     "checkpoint=s",
  77.     "flushlog",
  78.     "resetmaster",
  79.     "resetslave",
  80.     "tmpdir|t=s",
  81.     "dryrun|n",
  82. ) or usage("Invalid option");
  83. # @db_desc
  84. # ==========
  85. # a list of hash-refs containing:
  86. #
  87. #   'src'     - name of the db to copy
  88. #   't_regex' - regex describing tables in src
  89. #   'target'  - destination directory of the copy
  90. #   'tables'  - array-ref to list of tables in the db
  91. #   'files'   - array-ref to list of files to be copied
  92. #
  93. my @db_desc = ();
  94. my $tgt_name = undef;
  95. usage("") if ($opt{help});
  96. if ( $opt{regexp} || $opt{suffix} || @ARGV > 2 ) {
  97.     $tgt_name   = pop @ARGV unless ( exists $opt{suffix} );
  98.     @db_desc = map { s{^([^.]+)./(.+)/$}{$1}; { 'src' => $_, 't_regex' => ( $2 ? $2 : '.*' ) } } @ARGV;
  99. }
  100. else {
  101.     usage("Database name to hotcopy not specified") unless ( @ARGV );
  102.     $ARGV[0] =~ s{^([^.]+)./(.+)/$}{$1};
  103.     @db_desc = ( { 'src' => $ARGV[0], 't_regex' => ( $2 ? $2 : '.*' ) } );
  104.     if ( @ARGV == 2 ) {
  105. $tgt_name   = $ARGV[1];
  106.     }
  107.     else {
  108. $opt{suffix} = "_copy";
  109.     }
  110. }
  111. my %mysqld_vars;
  112. my $start_time = time;
  113. $opt_tmpdir= $opt{tmpdir} if $opt{tmpdir};
  114. $0 = $1 if $0 =~ m:/([^/]+)$:;
  115. $opt{quiet} = 0 if $opt{debug};
  116. $opt{allowold} = 1 if $opt{keepold};
  117. # --- connect to the database ---
  118. my $dsn = ";host=localhost";
  119. $dsn .= ";port=$opt{port}" if $opt{port};
  120. $dsn .= ";mysql_socket=$opt{socket}" if $opt{socket};
  121. my $dbh = DBI->connect("dbi:mysql:$dsn;mysql_read_default_group=mysqlhotcopy",
  122.                         $opt{user}, $opt{password},
  123. {
  124.     RaiseError => 1,
  125.     PrintError => 0,
  126.     AutoCommit => 1,
  127. });
  128. # --- check that checkpoint table exists if specified ---
  129. if ( $opt{checkpoint} ) {
  130.     eval { $dbh->do( qq{ select time_stamp, src, dest, msg 
  131.  from $opt{checkpoint} where 1 != 1} );
  132.        };
  133.     die "Error accessing Checkpoint table ($opt{checkpoint}): $@"
  134.       if ( $@ );
  135. }
  136. # --- get variables from database ---
  137. my $sth_vars = $dbh->prepare("show variables like 'datadir'");
  138. $sth_vars->execute;
  139. while ( my ($var,$value) = $sth_vars->fetchrow_array ) {
  140.     $mysqld_vars{ $var } = $value;
  141. }
  142. my $datadir = $mysqld_vars{'datadir'}
  143.     || die "datadir not in mysqld variables";
  144. $datadir =~ s:/$::;
  145. # --- get target path ---
  146. my ($tgt_dirname, $to_other_database);
  147. $to_other_database=0;
  148. if (defined($tgt_name) && $tgt_name =~ m:^w+$: && @db_desc <= 1)
  149. {
  150.     $tgt_dirname = "$datadir/$tgt_name";
  151.     $to_other_database=1;
  152. }
  153. elsif (defined($tgt_name) && ($tgt_name =~ m:/: || $tgt_name eq '.')) {
  154.     $tgt_dirname = $tgt_name;
  155. }
  156. elsif ( $opt{suffix} ) {
  157.     print "Using copy suffix '$opt{suffix}'n" unless $opt{quiet};
  158. }
  159. else
  160. {
  161.   $tgt_name="" if (!defined($tgt_name));
  162.   die "Target '$tgt_name' doesn't look like a database name or directory path.n";
  163. }
  164. # --- resolve database names from regexp ---
  165. if ( defined $opt{regexp} ) {
  166.     my $sth_dbs = $dbh->prepare("show databases");
  167.     $sth_dbs->execute;
  168.     while ( my ($db_name) = $sth_dbs->fetchrow_array ) {
  169. push @db_desc, { 'src' => $db_name } if ( $db_name =~ m/$opt{regexp}/o );
  170.     }
  171. }
  172. # --- get list of tables to hotcopy ---
  173. my $hc_locks = "";
  174. my $hc_tables = "";
  175. my $num_tables = 0;
  176. my $num_files = 0;
  177. foreach my $rdb ( @db_desc ) {
  178.     my $db = $rdb->{src};
  179.     eval { $dbh->do( "use $db" ); };
  180.     die "Database '$db' not accessible: $@"  if ( $@ );
  181.     my @dbh_tables = $dbh->func( '_ListTables' );
  182.     ## generate regex for tables/files
  183.     my $t_regex = $rdb->{t_regex};        ## assign temporary regex
  184.     my $negated = $t_regex =~ tr/~//d;    ## remove and count negation operator: we don't allow ~ in table names
  185.     $t_regex = qr/$t_regex/;              ## make regex string from user regex
  186.     ## filter (out) tables specified in t_regex
  187.     print "Filtering tables with '$t_regex'n" if $opt{debug};
  188.     @dbh_tables = ( $negated 
  189.     ? grep { $_ !~ $t_regex } @dbh_tables 
  190.     : grep { $_ =~ $t_regex } @dbh_tables );
  191.     ## get list of files to copy
  192.     my $db_dir = "$datadir/$db";
  193.     opendir(DBDIR, $db_dir ) 
  194.       or die "Cannot open dir '$db_dir': $!";
  195.     my %db_files;
  196.     map { ( /(.+).w+$/ ? ( $db_files{$_} = $1 ) : () ) } readdir(DBDIR);
  197.     unless( keys %db_files ) {
  198. warn "'$db' is an empty databasen";
  199.     }
  200.     closedir( DBDIR );
  201.     ## filter (out) files specified in t_regex
  202.     my @db_files = ( $negated 
  203.   ? grep { $db_files{$_} !~ $t_regex } keys %db_files
  204.   : grep { $db_files{$_} =~ $t_regex } keys %db_files );
  205.     @db_files = sort @db_files;
  206.     my @index_files=();
  207.     ## remove indices unless we're told to keep them
  208.     if ($opt{noindices}) {
  209.         @index_files= grep { /.(ISM|MYI)$/ } @db_files;
  210. @db_files = grep { not /.(ISM|MYI)$/ } @db_files;
  211.     }
  212.     $rdb->{files}  = [ @db_files ];
  213.     $rdb->{index}  = [ @index_files ];
  214.     my @hc_tables = map { "$db.$_" } @dbh_tables;
  215.     $rdb->{tables} = [ @hc_tables ];
  216.     $hc_locks .= ", "  if ( length $hc_locks && @hc_tables );
  217.     $hc_locks .= join ", ", map { "$_ READ" } @hc_tables;
  218.     $hc_tables .= ", "  if ( length $hc_tables && @hc_tables );
  219.     $hc_tables .= join ", ", @hc_tables;
  220.     $num_tables += scalar @hc_tables;
  221.     $num_files  += scalar @{$rdb->{files}};
  222. }
  223. # --- resolve targets for copies ---
  224. my @targets = ();
  225. if (defined($tgt_name) && length $tgt_name ) {
  226.     # explicit destination directory specified
  227.     # GNU `cp -r` error message
  228.     die "copying multiple databases, but last argument ($tgt_dirname) is not a directoryn"
  229.       if ( @db_desc > 1 && !(-e $tgt_dirname && -d $tgt_dirname ) );
  230.     if ($to_other_database)
  231.     {
  232.       foreach my $rdb ( @db_desc ) {
  233. $rdb->{target} = "$tgt_dirname";
  234.       }
  235.     }
  236.     elsif ($opt{method} =~ /^scpb/) 
  237.     {   # we have to trust scp to hit the target
  238. foreach my $rdb ( @db_desc ) {
  239.     $rdb->{target} = "$tgt_dirname/$rdb->{src}";
  240. }
  241.     }
  242.     else
  243.     {
  244.       die "Last argument ($tgt_dirname) is not a directoryn"
  245. if (!(-e $tgt_dirname && -d $tgt_dirname ) );
  246.       foreach my $rdb ( @db_desc ) {
  247. $rdb->{target} = "$tgt_dirname/$rdb->{src}";
  248.       }
  249.     }
  250.   }
  251. else {
  252.   die "Error: expected $opt{suffix} to exist" unless ( exists $opt{suffix} );
  253.   foreach my $rdb ( @db_desc ) {
  254.     $rdb->{target} = "$datadir/$rdb->{src}$opt{suffix}";
  255.   }
  256. }
  257. print Dumper( @db_desc ) if ( $opt{debug} );
  258. # --- bail out if all specified databases are empty ---
  259. die "No tables to hot-copy" unless ( length $hc_locks );
  260. # --- create target directories if we are using 'cp' ---
  261. my @existing = ();
  262. if ($opt{method} =~ /^cpb/)
  263. {
  264.   foreach my $rdb ( @db_desc ) {
  265.     push @existing, $rdb->{target} if ( -d  $rdb->{target} );
  266.   }
  267.   if ( @existing && !$opt{allowold} )
  268.   {
  269.     $dbh->disconnect();
  270.     die "Can't hotcopy to '", join( "','", @existing ), "' because directorynalready exist and the --allowold option was not given.n"
  271.   }
  272. }
  273. retire_directory( @existing ) if ( @existing );
  274. foreach my $rdb ( @db_desc ) {
  275.     my $tgt_dirpath = $rdb->{target};
  276.     if ( $opt{dryrun} ) {
  277. print "mkdir $tgt_dirpath, 0750n";
  278.     }
  279.     elsif ($opt{method} =~ /^scpb/) {
  280. ## assume it's there?
  281. ## ...
  282.     }
  283.     else {
  284. mkdir($tgt_dirpath, 0750)
  285.   or die "Can't create '$tgt_dirpath': $!n";
  286.     }
  287. }
  288. ##############################
  289. # --- PERFORM THE HOT-COPY ---
  290. #
  291. # Note that we try to keep the time between the LOCK and the UNLOCK
  292. # as short as possible, and only start when we know that we should
  293. # be able to complete without error.
  294. # read lock all the tables we'll be copying
  295. # in order to get a consistent snapshot of the database
  296. if ( $opt{checkpoint} ) {
  297.     # convert existing READ lock on checkpoint table into WRITE lock
  298.     unless ( $hc_locks =~ s/$opt{checkpoint}s+READ/$opt{checkpoint} WRITE/ ) {
  299. $hc_locks .= ", $opt{checkpoint} WRITE";
  300.     }
  301. }
  302. my $hc_started = time; # count from time lock is granted
  303. if ( $opt{dryrun} ) {
  304.     print "LOCK TABLES $hc_locksn";
  305.     print "FLUSH TABLES /*!32323 $hc_tables */n";
  306.     print "FLUSH LOGSn" if ( $opt{flushlog} );
  307.     print "RESET MASTERn" if ( $opt{resetmaster} );
  308.     print "RESET SLAVEn" if ( $opt{resetslave} );
  309. }
  310. else {
  311.     my $start = time;
  312.     $dbh->do("LOCK TABLES $hc_locks");
  313.     printf "Locked $num_tables tables in %d seconds.n", time-$start unless $opt{quiet};
  314.     $hc_started = time; # count from time lock is granted
  315.     # flush tables to make on-disk copy uptodate
  316.     $start = time;
  317.     $dbh->do("FLUSH TABLES /*!32323 $hc_tables */");
  318.     printf "Flushed tables ($hc_tables) in %d seconds.n", time-$start unless $opt{quiet};
  319.     $dbh->do( "FLUSH LOGS" ) if ( $opt{flushlog} );
  320.     $dbh->do( "RESET MASTER" ) if ( $opt{resetmaster} );
  321.     $dbh->do( "RESET SLAVE" ) if ( $opt{resetslave} );
  322. }
  323. my @failed = ();
  324. foreach my $rdb ( @db_desc )
  325. {
  326.   my @files = map { "$datadir/$rdb->{src}/$_" } @{$rdb->{files}};
  327.   next unless @files;
  328.   
  329.   eval { copy_files($opt{method}, @files, $rdb->{target} ); };
  330.   push @failed, "$rdb->{src} -> $rdb->{target} failed: $@"
  331.     if ( $@ );
  332.   
  333.   @files = @{$rdb->{index}};
  334.   if ($rdb->{index})
  335.   {
  336.     copy_index($opt{method}, @files,
  337.        "$datadir/$rdb->{src}", $rdb->{target} );
  338.   }
  339.   
  340.   if ( $opt{checkpoint} ) {
  341.     my $msg = ( $@ ) ? "Failed: $@" : "Succeeded";
  342.     
  343.     eval {
  344.       $dbh->do( qq{ insert into $opt{checkpoint} (src, dest, msg) 
  345.       VALUES ( '$rdb->{src}', '$rdb->{target}', '$msg' )
  346.     } ); 
  347.     };
  348.     
  349.     if ( $@ ) {
  350.       warn "Failed to update checkpoint table: $@n";
  351.     }
  352.   }
  353. }
  354. if ( $opt{dryrun} ) {
  355.     print "UNLOCK TABLESn";
  356.     if ( @existing && !$opt{keepold} ) {
  357. my @oldies = map { $_ . '_old' } @existing;
  358. print "rm -rf @oldiesn" 
  359.     }
  360.     $dbh->disconnect();
  361.     exit(0);
  362. }
  363. else {
  364.     $dbh->do("UNLOCK TABLES");
  365. }
  366. my $hc_dur = time - $hc_started;
  367. printf "Unlocked tables.n" unless $opt{quiet};
  368. #
  369. # --- HOT-COPY COMPLETE ---
  370. ###########################
  371. $dbh->disconnect;
  372. if ( @failed ) {
  373.     # hotcopy failed - cleanup
  374.     # delete any @targets 
  375.     # rename _old copy back to original
  376.     print "Deleting @targets n" if $opt{debug};
  377.     rmtree([@targets]);
  378.     if (@existing) {
  379. print "Restoring @existing from back-upn" if $opt{debug};
  380.         foreach my $dir ( @existing ) {
  381.     rename("${dir}_old", $dir )
  382.       or warn "Can't rename ${dir}_old to $dir: $!n";
  383. }
  384.     }
  385.     die join( "n", @failed );
  386. }
  387. else {
  388.     # hotcopy worked
  389.     # delete _old unless $opt{keepold}
  390.     if ( @existing && !$opt{keepold} ) {
  391. my @oldies = map { $_ . '_old' } @existing;
  392. print "Deleting previous copy in @oldiesn" if $opt{debug};
  393. rmtree([@oldies]);
  394.     }
  395.     printf "$0 copied %d tables (%d files) in %d second%s (%d seconds overall).n",
  396.     $num_tables, $num_files,
  397.     $hc_dur, ($hc_dur==1)?"":"s", time - $start_time
  398. unless $opt{quiet};
  399. }
  400. exit 0;
  401. # ---
  402. sub copy_files {
  403.     my ($method, $files, $target) = @_;
  404.     my @cmd;
  405.     print "Copying ".@$files." files...n" unless $opt{quiet};
  406.     if ($method =~ /^s?cpb/) { # cp or scp with optional flags
  407. @cmd = ($method);
  408. # add option to preserve mod time etc of copied files
  409. # not critical, but nice to have
  410. push @cmd, "-p" if $^O =~ m/^(solaris|linux|freebsd)$/;
  411. # add recursive option for scp
  412. push @cmd, "-r" if $^O =~ /m^(solaris|linux|freebsd)$/ && $method =~ /^scpb/;
  413. # add files to copy and the destination directory
  414. push @cmd, @$files, $target;
  415.     }
  416.     else
  417.     {
  418. die "Can't use unsupported method '$method'n";
  419.     }
  420.     safe_system (@cmd);
  421. }
  422. #
  423. # Copy only the header of the index file
  424. #
  425. sub copy_index
  426. {
  427.   my ($method, $files, $source, $target) = @_;
  428.   my $tmpfile="$opt_tmpdir/mysqlhotcopy$$";
  429.   
  430.   print "Copying indices for ".@$files." files...n" unless $opt{quiet};  
  431.   foreach my $file (@$files)
  432.   {
  433.     my $from="$source/$file";
  434.     my $to="$target/$file";
  435.     my $buff;
  436.     open(INPUT, "<$from") || die "Can't open file $from: $!n";
  437.     my $length=read INPUT, $buff, 2048;
  438.     die "Can't read index header from $fromn" if ($length < 1024);
  439.     close INPUT;
  440.     
  441.     if ( $opt{dryrun} )
  442.     {
  443.       print "$opt{method}-header $from $ton";
  444.     }
  445.     elsif ($opt{method} eq 'cp')
  446.     {
  447.       open(OUTPUT,">$to")   || die "Can't create file $to: $!n";
  448.       if (syswrite(OUTPUT,$buff) != length($buff))
  449.       {
  450. die "Error when writing data to $to: $!n";
  451.       }
  452.       close OUTPUT    || die "Error on close of $to: $!n";
  453.     }
  454.     elsif ($opt{method} eq 'scp')
  455.     {
  456.       my $tmp=$tmpfile;
  457.       open(OUTPUT,">$tmp") || die "Can't create file $tmp: $!n";
  458.       if (syswrite(OUTPUT,$buff) != length($buff))
  459.       {
  460. die "Error when writing data to $tmp: $!n";
  461.       }
  462.       close OUTPUT      || die "Error on close of $tmp: $!n";
  463.       safe_system("scp $tmp $to");
  464.     }
  465.     else
  466.     {
  467.       die "Can't use unsupported method '$opt{method}'n";
  468.     }
  469.   }
  470.   unlink "$tmpfile" if  ($opt{method} eq 'scp');
  471. }
  472. sub safe_system
  473. {
  474.   my @cmd= @_;
  475.   if ( $opt{dryrun} )
  476.   {
  477.     print "@cmdn";
  478.     return;
  479.   }
  480.   ## for some reason system fails but backticks works ok for scp...
  481.   print "Executing '@cmd'n" if $opt{debug};
  482.   my $cp_status = system "@cmd > /dev/null";
  483.   if ($cp_status != 0) {
  484.     warn "Burp ('scuse me). Trying backtick execution...n" if $opt{debug}; #'
  485.     ## try something else
  486.     `@cmd` && die "Error: @cmd failed ($cp_status) while copying files.n";
  487.   }
  488. }
  489. sub retire_directory {
  490.     my ( @dir ) = @_;
  491.     foreach my $dir ( @dir ) {
  492. my $tgt_oldpath = $dir . '_old';
  493. if ( $opt{dryrun} ) {
  494.     print "rmtree $tgt_oldpathn" if ( -d $tgt_oldpath );
  495.     print "rename $dir, $tgt_oldpathn";
  496.     next;
  497. }
  498. if ( -d $tgt_oldpath ) {
  499.     print "Deleting previous 'old' hotcopy directory ('$tgt_oldpath')n" unless $opt{quiet};
  500.     rmtree([$tgt_oldpath])
  501. }
  502. rename($dir, $tgt_oldpath)
  503.   or die "Can't rename $dir=>$tgt_oldpath: $!n";
  504. print "Existing hotcopy directory renamed to '$tgt_oldpath'n" unless $opt{quiet};
  505.     }
  506. }
  507. __END__
  508. =head1 DESCRIPTION
  509. mysqlhotcopy is designed to make stable copies of live MySQL databases.
  510. Here "live" means that the database server is running and the database
  511. may be in active use. And "stable" means that the copy will not have
  512. any corruptions that could occur if the table files were simply copied
  513. without first being locked and flushed from within the server.
  514. =head1 OPTIONS
  515. =over 4
  516. =item --checkpoint checkpoint-table
  517. As each database is copied, an entry is written to the specified
  518. checkpoint-table.  This has the happy side-effect of updating the
  519. MySQL update-log (if it is switched on) giving a good indication of
  520. where roll-forward should begin for backup+rollforward schemes.
  521. The name of the checkpoint table should be supplied in database.table format.
  522. The checkpoint-table must contain at least the following fields:
  523. =over 4
  524.   time_stamp timestamp not null
  525.   src varchar(32)
  526.   dest varchar(60)
  527.   msg varchar(255)
  528. =back
  529. =item --suffix suffix
  530. Each database is copied back into the originating datadir under
  531. a new name. The new name is the original name with the suffix
  532. appended. 
  533. If only a single db_name is supplied and the --suffix flag is not
  534. supplied, then "--suffix=_copy" is assumed.
  535. =item --allowold
  536. Move any existing version of the destination to a backup directory for
  537. the duration of the copy. If the copy successfully completes, the backup 
  538. directory is deleted - unless the --keepold flag is set.  If the copy fails,
  539. the backup directory is restored.
  540. The backup directory name is the original name with "_old" appended.
  541. Any existing versions of the backup directory are deleted.
  542. =item --keepold
  543. Behaves as for the --allowold, with the additional feature 
  544. of keeping the backup directory after the copy successfully completes.
  545. =item --flushlog
  546. Rotate the log files by executing "FLUSH LOGS" after all tables are
  547. locked, and before they are copied.
  548. =item --resetmaster
  549. Reset the bin-log by executing "RESET MASTER" after all tables are
  550. locked, and before they are copied. Usefull if you are recovering a
  551. slave in a replication setup.
  552. =item --resetslave
  553. Reset the master.info by executing "RESET SLAVE" after all tables are
  554. locked, and before they are copied. Usefull if you are recovering a
  555. server in a mutual replication setup.
  556. =item --regexp pattern
  557. Copy all databases with names matching the pattern
  558. =item db_name./pattern/
  559. Copy only tables matching pattern. Shell metacharacters ( (, ), |, !,
  560. etc.) have to be escaped (e.g. ). For example, to select all tables
  561. in database db1 whose names begin with 'foo' or 'bar':
  562.     mysqlhotcopy --indices --method=cp db1./^(foo|bar)/
  563. =item db_name./~pattern/
  564. Copy only tables not matching pattern. For example, to copy tables
  565. that do not begin with foo nor bar:
  566.     mysqlhotcopy --indices --method=cp db1./~^(foo|bar)/
  567. =item -?, --help
  568. Display helpscreen and exit
  569. =item -u, --user=#         
  570. user for database login if not current user
  571. =item -p, --password=#     
  572. password to use when connecting to server
  573. =item -P, --port=#         
  574. port to use when connecting to local server
  575. =item -S, --socket=#         
  576. UNIX domain socket to use when connecting to local server
  577. =item  --noindices          
  578. Don't include index files in copy. Only up to the first 2048 bytes
  579. are copied;  You can restore the indexes with isamchk -r or myisamchk -r
  580. on the backup.
  581. =item  --method=#           
  582. method for copy (only "cp" currently supported). Alpha support for
  583. "scp" was added in November 2000. Your experience with the scp method
  584. will vary with your ability to understand how scp works. 'man scp'
  585. and 'man ssh' are your friends.
  586. The destination directory _must exist_ on the target machine using the
  587. scp method. --keepold and --allowold are meeningless with scp.
  588. Liberal use of the --debug option will help you figure out what's
  589. really going on when you do an scp.
  590. Note that using scp will lock your tables for a _long_ time unless
  591. your network connection is _fast_. If this is unacceptable to you,
  592. use the 'cp' method to copy the tables to some temporary area and then
  593. scp or rsync the files at your leisure.
  594. =item -q, --quiet              
  595. be silent except for errors
  596. =item  --debug
  597. Debug messages are displayed 
  598. =item -n, --dryrun
  599. Display commands without actually doing them
  600. =back
  601. =head1 WARRANTY
  602. This software is free and comes without warranty of any kind. You
  603. should never trust backup software without studying the code yourself.
  604. Study the code inside this script and only rely on it if I<you> believe
  605. that it does the right thing for you.
  606. Patches adding bug fixes, documentation and new features are welcome.
  607. Please send these to internals@mysql.com.
  608. =head1 TO DO
  609. Extend the individual table copy to allow multiple subsets of tables
  610. to be specified on the command line:
  611.   mysqlhotcopy db newdb  t1 t2 /^foo_/ : t3 /^bar_/ : +
  612. where ":" delimits the subsets, the /^foo_/ indicates all tables
  613. with names begining with "foo_" and the "+" indicates all tables
  614. not copied by the previous subsets.
  615. newdb is either another not existing database or a full path to a directory
  616. where we can create a directory 'db'
  617. Add option to lock each table in turn for people who don't need
  618. cross-table integrity.
  619. Add option to FLUSH STATUS just before UNLOCK TABLES.
  620. Add support for other copy methods (eg tar to single file?).
  621. Add support for forthcoming MySQL ``RAID'' table subdirectory layouts.
  622. =head1 AUTHOR
  623. Tim Bunce
  624. Martin Waite - added checkpoint, flushlog, regexp and dryrun options
  625. Ralph Corderoy - added synonyms for commands
  626. Scott Wiersdorf - added table regex and scp support
  627. Monty - working --noindex (copy only first 2048 bytes of index file)
  628.         Fixes for --method=scp
  629. Ask Bjoern Hansen - Cleanup code to fix a few bugs and enable -w again.
  630. Emil S. Hansen - Added resetslave and resetmaster.