每天如何从MySQL获得自动备份?

时间:2018-08-04 14:18:27

标签: php mysql backup

如何更改此代码以自动运行?在这里:

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);

// DB connection
backup_tables('#','#','#','#');

/* backup the db OR just a table, make 'user' to --> '*' to get all the tables */
function backup_tables($host,$user,$pass,$name,$tables = '*')
{

$link = mysql_connect($host,$user,$pass);
mysql_select_db($name,$link);

//get all of the tables
if($tables == '*')
{
    $tables = array();
    $result = mysql_query('SHOW TABLES');
    while($row = mysql_fetch_row($result))
    {
        $tables[] = $row[0];
    }
}
else
{
    $tables = is_array($tables) ? $tables : explode(',',$tables);
}

//cycle through
foreach($tables as $table)
{
    $result = mysql_query('SELECT * FROM '.$table);
    $num_fields = mysql_num_fields($result);

    $return.= 'DROP TABLE '.$table.';';
    $row2 = mysql_fetch_row(mysql_query('SHOW CREATE TABLE '.$table));
    $return.= "\n\n".$row2[1].";\n\n";

    for ($i = 0; $i < $num_fields; $i++) 
    {
        while($row = mysql_fetch_row($result))
        {
            $return.= 'INSERT INTO '.$table.' VALUES(';
            for($j=0; $j < $num_fields; $j++) 
            {
                $row[$j] = addslashes($row[$j]);
                $row[$j] = ereg_replace("\n","\\n",$row[$j]);
                if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
                if ($j < ($num_fields-1)) { $return.= ','; }
            }
            $return.= ");\n";
        }
    }
    $return.="\n\n\n";
}

//save file
$handle = fopen('backup/db-backup-'.time().'-'.(md5(implode(',',$tables))).'.sql','w+');
fwrite($handle,$return);
fclose($handle);
}

?>

1 个答案:

答案 0 :(得分:0)

因为PHP往往只运行几分钟,然后超时,所以尝试仅在php中设置持久时间表是一个失败的原因。

如Dave所说,您需要在UNIX上使用cron或在Windows上使用任务计划程序运行php脚本。

我用这个命令备份了我的mysql数据库

mysqldump -u someusername -psomepassword --all-databases | gzip > folderstructure\%date:~0,2%-backup.sql.gz

我按每晚的时间表运行它,使用文件名中的每月日期创建了30天的备份轮换。