MySQL 定時備份 Windows主機

來源:互聯網
上載者:User
關鍵字 網路程式設計 Mysql教程

對於Windows主機

==============

假想環境:

MySQL 安裝位置:C:MySQL

論壇資料庫名稱為:bbs

MySQL root 密碼:123456

資料庫備份目的地:D:db_backup

程式碼

@echo off

C:MySQLbinmysqladmin -u root --password=123456 shutdown

C:MySQLbinmysqldump --opt -u root --password=123456 bbs > D:db_backupbbs.sql

C:MySQLbinmysqld-nt

將以上代碼保存為backup_db.bat

然後使用Windows的「計畫任務」定時執行該腳本即可。

同時,可以用PHP的方式,完成:

讓MYSQL實現自動備份變成可能!

1、編輯如下代碼,並保存為backup.php,如果要壓縮可以拷貝一個rar.exe:

  

if ($argc != 2 || in_array($argv[1], array('--help', '-?'))) {

?>

backup Ver 0.01, for Win95/Win98/WinNT/Win2000/WinXP on i32

Copyright (C) 2000 ptker All rights reserved.

This is free software,and you are welcome to modify and redistribute it

under the GPL license

PHP Shell script for the backup MySQL database.

Usage:

can be database name you would like to backup.

With the --help, or -? options, you can get this help and exit.

  

} else {

$dbname = $argv[1];

$dump_tool = "c:\mysql\bin\mysqldump";

$rar_tool = "d:\php4\rar";

@exec("$dump_tool --opt -u user -ppassword $dbname > ./$dbname.sql");

@exec("$rar_tool a -ag_yyyy_mm_dd_hh_mm $dbname.rar $dbname.sql");

@unlink("$dbname.sql");

echo "Backup complete!";

}

?>

2、添加一個任務計畫,在(如圖2所示)這一步輸入命令:

D:php4php.exe -q D:php4backup.php databasename

3、時間設置為每天運行一次,然後運行這個任務。

4、最後會在d:php4目錄下生成一個以資料庫名和目前時間組成的rar檔。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.