This question already has answers here:
Closed 3 years ago.
Automated or regular backup of mysql data
(2个答案)
嗨,我需要创建一些自动连接到另一个服务器使用php库,然后我需要加载mysql数据库中的数据,只有第一个文件上传新文件是每天上传。问题是我如何继续每天上传一个文件到数据库我就快到了
代码如下:
}
(2个答案)
嗨,我需要创建一些自动连接到另一个服务器使用php库,然后我需要加载mysql数据库中的数据,只有第一个文件上传新文件是每天上传。问题是我如何继续每天上传一个文件到数据库我就快到了
代码如下:
<?php
include 'core/init.php';
include 'includes/overall/header.php';
//connection to linux server
$conn = ssh2_connect('xxx.xxx.xx.xxx', 22);
$destinationPath = '/path/to/destination/path/';
$localPath = 'C:\path\to\local\path\';
//checks if the connection is successful or not
if(ssh2_auth_password($conn, 'username', 'password')){
echo '<script type="text/javascript">alert("Authentication was successful"); </script>'; //javascript pop up when successful
}else{
die("Authentication failed");
}
if(ssh2_scp_recv($conn, $destinationPath, $localPath)){
echo '<h2>Todays file recieved</h2>'; //if file was recieved from server to local echo todays file recieved, putting the file in localpath
}else{ //if the file was not uploaded send an email for radar file too be uploaded
$to = 'testemail@yahoo.co.uk';
$subject = 'the subject';
$message = 'hello';
$headers = "From: The Sender Name <senderEmail@yahoo.co.uk>\r\n";
$headers .= "Reply-To: senderEmail@yahoo.coom\r\n";
$headers .= "Content-type: text/html\r\n";
mail($to, $subject, $message, $headers);
}
$string = file_get_contents('http://localhost/Prototype/core/edit.txt', 'r');//get contents of file from web used to read the file
$myFile = 'C:wampwwwPrototypecoreedit.txt';//file directory
$fh = fopen($myFile, 'w') or die("Could not open: " .mysql_error());//open the file
fwrite($fh, $string);
fclose($fh);
$result = mysql_query("LOAD DATA LOCAL INFILE '$myFile'". "INTO TABLE `restartdata` FIELDS TERMINATED BY ',' ");
if (!$result) {
die("Could not load." . mysql_error());
}else{
echo 'data loaded in the database';
}
最佳答案
绝对不用PHP。当然也没有国产的。有一个内置的机制。它被称为replication经过15年多的尝试和测试,目前已在数千个装置上使用。
复制支持来自一个MySQL数据库服务器(主服务器)的数据
要复制到一个或多个MySQL数据库服务器(从服务器)。
默认情况下,复制是异步的;从机不需要
已永久连接以从主服务器接收更新。取决于
在配置中,可以复制选定的所有数据库
数据库,甚至数据库中的选定表。
在PHP中这样做意味着每天或每小时都会转储整个数据库,这意味着在转储期间站点没有响应。然后必须通过HTTP传输整个数据库。
最后但同样重要的是,您的PHP方法不允许连续存档如果您每天存档一次,那么如果系统在上次备份后23:50小时出现故障,会发生什么情况?