Nodejs怎樣在服務端寫定時指令碼,自動備份MongoDB資料庫,並記錄日誌
阿新 • • 發佈:2020-07-19
注意:mongod服務需提前開啟
定時任務
安裝模組 npm install node-schedule -S
使用方法
const schedule = require('node-schedule');//引入定時任務模組
function scheduleCronstyle(){
schedule.scheduleJob('10 * * * * *', function(){
console.log('scheduleCronstyle:' + new Date());//定時執行內容
});
}
scheduleCronstyle();
萬用字元引數介紹
* * * * * * ┬ ┬ ┬ ┬ ┬ ┬ │ │ │ │ │ | │ │ │ │ │ └ day of week (0 - 7) (0 or 7 is Sun) │ │ │ │ └───── month (1 - 12) │ │ │ └────────── day of month (1 - 31) │ │ └─────────────── hour (0 - 23) │ └──────────────────── minute (0 - 59) └───────────────────────── second (0 - 59, OPTIONAL)
開啟CMD執行命令
安裝模組 npm install node-schedule -S
使用方法
const process = require('child_process');//引入cmd模組 const cmd = 'ipconfig';//cmd執行內容 process.exec(cmd, function(error, stdout, stderr) { if (error) { console.log('Error:'+ error);//失敗 } else if (stderr.lenght > 0) { console.log('Stderr:'+stderr.toString())//標準錯誤輸出 } else { console.log('Success')//成功 } });
日誌寫入
安裝模組 npm i fs -S
使用方法
const fs = require('fs');//引入fs模組 let year = (new Date()).getFullYear();//獲取年 let month = ((new Date()).getMonth()+1) > 9 ? ((new Date()).getMonth()+1) : '0' + ((new Date()).getMonth()+1);//獲取月 let date = (new Date()).getDate() > 9 ? (new Date()).getDate() : '0' + (new Date()).getDate();//獲取日 let hour = (new Date()).getHours() > 9 ? (new Date()).getHours() : '0' + (new Date()).getHours();//獲取時 let minute = (new Date()).getMinutes() > 9 ? (new Date()).getMinutes() : '0' + (new Date()).getMinutes();//獲取分 let seconds = (new Date()).getSeconds() > 9 ? (new Date()).getSeconds() : '0' + (new Date()).getSeconds();//獲取秒 let str = `${year}-${month}-${date} ${hour}:${minute}:${seconds} 備份` fs.writeFile(path,`\n${str}`, {flag:'a+'},(err) =>{ //path指的是儲存檔案路徑,如: C:\\backup\\[資料庫名]\\.log 我這裡儲存在備份資料庫目錄下 if(err){ console.log(err) } })
更多fs模組的儲存讀取請檢視我這篇部落格.
總結
const schedule = require('node-schedule');//引入定時任務模組
const process = require('child_process');//引入cmd模組
const fs = require('fs');//引入fs模組
//cmd執行內容
//資料庫地址及埠 如:127.0.0.1:27017
//要備份的資料庫名稱 如:test
//備份路徑如:C:\\backup
const cmd = 'mongodump -h [資料庫地址:埠] -d [要備份的資料庫名稱] -o [備份路徑]';
function scheduleCronstyle(){
schedule.scheduleJob('0 0 23 * * 7', function(){ //每週日的23時整
process.exec(cmd, function(error, stdout, stderr) { //在cmd中執行上方定義的命令
if (error) {
console.log('Error:'+ error); //錯誤
} else if (stderr.lenght > 0) {
console.log('Stderr:'+stderr.toString()) //標準性錯誤
} else {
//成功之後寫入日誌
let year = (new Date()).getFullYear();//獲取年
let month = ((new Date()).getMonth()+1) > 9 ? ((new Date()).getMonth()+1) : '0' + ((new Date()).getMonth()+1);//獲取月
let date = (new Date()).getDate() > 9 ? (new Date()).getDate() : '0' + (new Date()).getDate();//獲取日
let hour = (new Date()).getHours() > 9 ? (new Date()).getHours() : '0' + (new Date()).getHours();//獲取時
let minute = (new Date()).getMinutes() > 9 ? (new Date()).getMinutes() : '0' + (new Date()).getMinutes();//獲取分
let seconds = (new Date()).getSeconds() > 9 ? (new Date()).getSeconds() : '0' + (new Date()).getSeconds();//獲取秒
let str = `${year}-${month}-${date} ${hour}:${minute}:${seconds} 備份`
fs.writeFile(path,`\n${str}`, {flag:'a+'},(err) =>{ //path 為儲存路徑 如:C:\\backup\\[資料庫名]\\.log 我這裡儲存在備份資料庫目錄下
if(err){
console.log(err)
}
})
}
});
});
}
scheduleCronstyle();
最後在終端中使用node執行該js檔案就可以定時備份資料庫並記錄備份時間