gpt4 book ai didi

php - 在没有cron的情况下运行php脚本来进行自动数据库备份

转载 作者:行者123 更新时间:2023-11-29 00:10:34 25 4
gpt4 key购买 nike

我试图在没有 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));
}
?>

备份.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;
}
?>

最佳答案

首先阅读:PHP is meant to die .

对于您的问题,您需要考虑几件事:

还有 sleep ,不是很准确(但对于这个用例足够准确)。如果您真的无权访问 cron,我会检查这两个步骤。如果您有权访问 cron,我真的会考虑使用它(如果您在 Windows 上,请查看计划任务)。

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

当然,用这种方式它不会 100% 每 50 分钟执行一次,但如果不会,就没有什么大的备份


最长执行时间 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>

还有一个免费的基于 Web 的 cron 可用:https://cron-job.org/ (不知道它是否也有英文版),但我敢肯定,还有更多内容。

关于php - 在没有cron的情况下运行php脚本来进行自动数据库备份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25310870/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com