透過 Crontab 排程備份 Mariadb (Mysql)使用 php

本教學使用環境介紹
伺服器端:Ubuntu 18.04 LTS
資料庫:Mariadb 10.1.34(Mysql)
語言版本:php 7.3
本機端:MacOS High Sierraphp

本教學將使用純 php 去備份資料庫並下載到目錄底下html

$ crontab -e

設定天天凌晨00:00 執行mysql

0 0 * * * php /var/www/backup.php

backup.php 腳本記得開頭必定要 「<?php」,即使你有啓用縮寫sql

header('Content-Type: text/html; charset=utf-8');
function backup_mysql_database($options){
$mtables = array(); $contents = "-- Database: `".$options['db_to_backup']."` --\n";

$mysqli = new mysqli($options['db_host'], $options['db_uname'], $options['db_password'], $options['db_to_backup']);
if ($mysqli->connect_error) {
    die('Error : ('. $mysqli->connect_errno .') '. $mysqli->connect_error);
}
$mysqli->query("SET NAMES utf8");
$mysqli->set_charset("utf8mb4");
$results = $mysqli->query("SHOW TABLES");

while ($row = $results->fetch_array()){
    if (!in_array($row[0], $options['db_exclude_tables'])){
        $mtables[] = $row[0];
    }
}

foreach($mtables as $table){
    $contents .= "-- Table `".$table."` --\n";

    $results = $mysqli->query("SHOW CREATE TABLE ".$table);
    while ($row = $results->fetch_array()){
        $contents .= $row[1].";\n\n";
    }

    $results = $mysqli->query("SELECT * FROM ".$table);
    $row_count = $results->num_rows;
    $fields = $results->fetch_fields();
    $fields_count = count($fields);

    $insert_head = "INSERT INTO `".$table."` (";
    for($i=0; $i < $fields_count; $i++){
        $insert_head .= "`".$fields[$i]->name."`";
            if($i < $fields_count-1){
                    $insert_head .= ', ';
                }
    }
    $insert_head .= ")";
    $insert_head .= " VALUES\n";

    if($row_count>0){
        $r = 0;
        while ($row = $results->fetch_array()){
            if(($r % 400) == 0){
                $contents .= $insert_head;
            }
            $contents .= "(";
            for($i=0; $i < $fields_count; $i++){
                $row_content = str_replace("\n","\\n",$mysqli->real_escape_string($row[$i]));

                switch($fields[$i]->type){
                    case 8: case 3:
                        $contents .= $row_content;
                        break;
                    default:
                        $contents .= "'". $row_content ."'";
                }
                if($i < $fields_count-1){
                        $contents .= ', ';
                    }
            }
            if(($r+1) == $row_count || ($r % 400) == 399){
                $contents .= ");\n\n";
             } else {
                $contents .= "),\n";
            }
            $r++;
        }
    }
}

if (!is_dir ( $options['db_backup_path'] )) {
        mkdir ( $options['db_backup_path'], 0777, true );
 }

## 備份後的 sql 名稱
$backup_file_name = "dev-" . date( "Y-m-d H:i:s").".sql";

$fp = fopen($options['db_backup_path'] . '/' . $backup_file_name ,'w+');
if (($result = fwrite($fp, $contents))) {
   // echo "Backup file created '$backup_file_name' ($result)";

}
fclose($fp);
return $backup_file_name;
}

## 資料庫設定
$options = array(
    'db_host'=> 'localhost',
    'db_uname' => 'root', // 資料庫使用者賬號
    'db_password' => 'password', // 資料庫密碼
    'db_to_backup' => 'db', // 資料庫名稱
    'db_backup_path' => '/var/www/', // 保存到哪一個路徑
    'db_exclude_tables' => array()
);
$backup_file_name=backup_mysql_database($options);

這樣就能夠透過 php 備份到該主機下,直接產生 sql 檔了。fetch

Line ID:ianmac
QQ:1258554508code

相關文章
相關標籤/搜索