亚洲欧洲国产欧美一区精品,激情五月亚洲色五月,最新精品国偷自产在线婷婷,欧美婷婷丁香五月天社区

      考試首頁(yè) | 考試用書 | 培訓(xùn)課程 | 模擬考場(chǎng) | 考試論壇  
        當(dāng)前位置:Linux認(rèn)證 > 紅帽認(rèn)證 > 紅帽認(rèn)證輔導(dǎo) > 文章內(nèi)容
        

      RHCE學(xué)習(xí)筆記:使用Shell腳本自動(dòng)化Linux系統(tǒng)維護(hù)任務(wù)

      來(lái)源:Linux中國(guó) [ 2016年1月20日 ] 【

      使用 Cron

      想更進(jìn)一步提高效率,你不會(huì)想只是坐在你的電腦前手動(dòng)執(zhí)行這些腳本。相反,你會(huì)使用 cron 來(lái)調(diào)度這些任務(wù)周期性地執(zhí)行,并把結(jié)果通過(guò)郵件發(fā)動(dòng)給預(yù)先指定的接收者,或者將它們保存到使用 web 瀏覽器可以查看的文件中。

      下面的腳本(filesystem_usage.sh)會(huì)運(yùn)行有名的 df -h 命令,格式化輸出到 HTML 表格并保存到 report.html 文件中:

      1. #!/bin/bash
      2. #演示使用 shell 腳本創(chuàng)建 HTML 報(bào)告的示例腳本
      3. #Web directory
      4. WEB_DIR=/var/www/html
      5. # A little CSS and table layout to make the report look a little nicer
      6. echo"
      7. "> $WEB_DIR/report.html
      8. #Viewhostnameand insert it at the top of the html body
      9. HOST=$(hostname)
      10. echo"Filesystem usage for host $HOST
      11. Last updated: $(date)

      12. ">> $WEB_DIR/report.html
      13. #Read the output of df-h line by line
      14. while read line;do
      15. echo"
      16. ">> $WEB_DIR/report.html
      17. done<<(df-h |grep-vi filesystem)
      18. echo"
      19. Filesystem
      20. Size
      21. Use %
      22. ">> $WEB_DIR/report.html
      23. echo $line | awk '{print $1}'>> $WEB_DIR/report.html
      24. echo"
      25. ">> $WEB_DIR/report.html
      26. echo $line | awk '{print $2}'>> $WEB_DIR/report.html
      27. echo"
      28. ">> $WEB_DIR/report.html
      29. echo $line | awk '{print $5}'>> $WEB_DIR/report.html
      30. echo"
      31. ">> $WEB_DIR/report.html

      在我們的 RHEL 7 服務(wù)器(192.168.0.18)中,看起來(lái)像下面這樣:

      服務(wù)器監(jiān)視報(bào)告

      服務(wù)器監(jiān)視報(bào)告

      你可以添加任何你想要的信息到那個(gè)報(bào)告中。添加下面的 crontab 條目在每天下午的 1:30 運(yùn)行該腳本:

      1. 3013***/root/scripts/filesystem_usage.sh
      首頁(yè) 1 2 3 尾頁(yè)
      將考試網(wǎng)添加到收藏夾 | 每次上網(wǎng)自動(dòng)訪問(wèn)考試網(wǎng) | 復(fù)制本頁(yè)地址,傳給QQ/MSN上的好友 | 申請(qǐng)鏈接 | 意見(jiàn)留言 TOP
      關(guān)于本站  網(wǎng)站聲明  廣告服務(wù)  聯(lián)系方式  站內(nèi)導(dǎo)航  考試論壇
      Copyright © 2007-2013 中華考試網(wǎng)(Examw.com) All Rights Reserved