mysqlhotcopy.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:21k
源码类别:

MySQL数据库

开发平台:

Visual C++

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