備份恢復(fù) - php備份mysql數(shù)據(jù)庫方案有哪些?
問題描述
問題解答
回答1:用工具啊 navicat 什么的如果要自動(dòng)化導(dǎo)出備份sql,一般是通過命令行crontab執(zhí)行mysqldump 來導(dǎo)出
回答2:工具能干的事就交給工具吧!php代碼實(shí)現(xiàn):提供兩種方法,僅供研究使用。第1種方法:復(fù)制代碼 代碼如下:
<?php$host='localhost';$user='root';$password='';$dbname='dbname';mysql_connect($host,$user,$password);mysql_select_db($dbname);$mysql= 'set names utf8;';mysql_query($mysql);$q1=mysql_query('show tables');while($t=mysql_fetch_array($q1)){$table=$t[0];$q2=mysql_query('show create table $table');$sql=mysql_fetch_array($q2);$mysql.=$sql[’Create Table’].';n';$q3=mysql_query('select * from $table');while($data=mysql_fetch_assoc($q3)){$keys=array_keys($data);$keys=array_map(’addslashes’,$keys);$keys=join(’,’,$keys);$keys=''.$keys.'';$vals=array_values($data);$vals=array_map(’addslashes’,$vals);$vals=join('’,’',$vals);$vals='’'.$vals.'’';$mysql.='insert into $table($keys) values($vals);n';}$mysql.='n';}$filename=$dbname.date(’Ymj’).'.sql';$fp = fopen($filename,’w’);fputs($fp,$mysql);fclose($fp);echo '數(shù)據(jù)備份成功,生成備份文件'.$filename;?>第2種方法:復(fù)制代碼 代碼如下:
<?php$host='localhost';$user='root';$password='';$dbname='dbname';backup_tables($host,$user,$password,$dbname);/ backup the db OR just a table /function backup_tables($host,$user,$pass,$name,$tables = ’*’){
$link = mysql_connect($host,$user,$pass);mysql_select_db($name,$link);
//get all of the tablesif($tables == ’*’){$tables = array();$result = mysql_query(’SHOW TABLES’);while($row = mysql_fetch_row($result)){$tables[] = $row[0];}}else{$tables = is_array($tables) ? $tables : explode(’,’,$tables);}$return = ’’;//cycle throughforeach($tables as $table){$result = mysql_query(’SELECT * FROM ’.$table);$num_fields = mysql_num_fields($result); $return.= ’DROP TABLE ’.$table.’;’;$row2 = mysql_fetch_row(mysql_query(’SHOW CREATE TABLE ’.$table));$return.= 'nn'.$row2[1].';nn';
for ($i = 0; $i < $num_fields; $i++) {while($row = mysql_fetch_row($result)){$return.= ’INSERT INTO ’.$table.’ VALUES(’;for($j=0; $j<$num_fields; $j++) {$row[$j] = addslashes($row[$j]);$row[$j] = ereg_replace('n','n',$row[$j]);if (isset($row[$j])) { $return.= ’'’.$row[$j].’'’ ; } else { $return.= ’''’; }if ($j<($num_fields-1)) { $return.= ’,’; }}$return.= ');n';}}$return.='nnn';}
//save file$handle = fopen(’db-backup-’.time().’-’.(md5(implode(’,’,$tables))).’.sql’,’w+’);fwrite($handle,$return);fclose($handle);}?>
回答3:public function uploadAction(){$root = $this->config->database->username;$pass = $this->config->database->password;$dbname = $this->config->database->dbname;$timestr = date(’YmdHis’);$fileName = 'backupMysqlFile-$timestr.sql.gz';$filePath = '/backup/mysql/$fileName';$command = 'mysqldump -h127.0.0.1 -u$root -p$pass $dbname | gzip > $filePath';exec($command);$ret = $this->qiniuuploadMgr->putFile($this->qiniuToken,$fileName,$filePath); }
> #crontab -e02 00 * * * /bin/sh /alidata/script/crontab/backupmysql.sh#定義一個(gè)每天晚上00:02執(zhí)行腳本的任務(wù)
backupmysql.sh里面只有一個(gè)請求CURL請求php action
相關(guān)文章:
1. 如何解決docker宿主機(jī)無法訪問容器中的服務(wù)?2. javascript - html5的data屬性怎么指定一個(gè)function函數(shù)呢?3. android - RxJava 中有根據(jù)條件執(zhí)行不同函數(shù)的操作符嗎?4. angular.js - 輸入郵箱地址之后, 如何使其自動(dòng)在末尾添加分號(hào)?5. java如何生成token?6. 在mac下出現(xiàn)了兩個(gè)docker環(huán)境7. javascript - 后臺(tái)管理系統(tǒng)左側(cè)折疊導(dǎo)航欄數(shù)據(jù)較多,怎么樣直接通過搜索去定位到具體某一個(gè)菜單項(xiàng)位置,并展開當(dāng)前菜單8. docker-compose中volumes的問題9. javascript - 如何使用nodejs 將.html 文件轉(zhuǎn)化成canvas10. python - Scrapy存在內(nèi)存泄漏的問題。
