运行没有cron的php脚本来进行自动数据库备份

时间:2014-08-14 14:40:32

标签: php mysql cron

我正在尝试运行没有cron的PHP脚本并成功但是没有像我预期的那样工作。我希望脚本每50分钟进行一次备份,但它没有这样做,它使它们连续。这就是我试过的:

cron.php

<?php
$interval=50; //minutes
set_time_limit(0);
ignore_user_abort(true);
while (true)
{
    $now=time();
    include("backup.php");
    sleep($interval*60-(time()-$now));
}
?>

backup.php

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$username = "user";
$password = "pass";
$hostname = "dbs";
$dbname   = "dbs_name";

// if mysqldump is on the system path you do not need to specify the full path
// simply use "mysqldump --add-drop-table ..." in this case
$dumpfname = $dbname . "_" . date("Y-m-d_H-i-s").".sql";
$command = "mysqldump --add-drop-table --host=$hostname --user=$username ";
if ($password)
$command.= "--password=". $password ." ";
$command.= $dbname;
$command.= " > " . $dumpfname;
system($command);

// zip the dump file
$zipfname = $dbname . "_" . date("Y-m-d_H-i-s").".zip";
$zip = new ZipArchive();
if($zip->open($zipfname,ZIPARCHIVE::CREATE))
{
    $zip->addFile($dumpfname,$dumpfname);
    $zip->close();
}

// read zip file and send it to standard output
if (file_exists($zipfname)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($zipfname));
    flush();
    //readfile($zipfname);
    //exit;
}
?>

1 个答案:

答案 0 :(得分:1)

首先阅读:PHP is meant to die

对于您的问题,您需要考虑以下几点:

也睡觉,不是非常精确(但对于这个用例足够的准确)。如果您真的无法访问cron,我会检查两个步骤。如果您可以访问cron,我会考虑使用它(如果您在Windows上,请查看计划任务)。

解决方法可能是,在每次访问者呼叫时,您都要检查文件lastbackup.txt并检查上次备份时间。如果它早于50分钟/不可用,您可以在此文件中写入当前时间戳并执行backup script after flushing output

当然,通过这种方式,它不会每50分钟100%执行,但如果不是,则没有什么可以备份的


最长执行时间Nginx

http {
    #...
        fastcgi_read_timeout 300; 
    #...
}

最长执行时间Apache

FastCgiServer /var/www/cgi-bin/php-cgi-5.3.1 -idle-timeout 120

最长执行时间IIS

<system.web>
    <httpRuntime executionTimeout="180" />
</system.web>

还有一个免费的基于网络的cron availbile:https://cron-job.org/(不知道它是否也是英文版),但我相信,还有更多这个。