当前位置:   article > 正文

基线巡检脚本-启动服务_基线脚本

基线脚本

脚本作用:获取主机各个服务的状态,判断是否符合要求,若不符合则修改为需求参数。

  1. #!/bin/bash
  2. cur_date=“`date +%Y-%m-%d`”
  3. disabled_service=“abrt-ccpp.service abrt-oops.service [list3] [list4] ……”
  4. enabled_service=“atd.service autovt@.service [list3] [list4] ……”
  5. for service in $disabled_service $enabled_service anaconda-shell@.service
  6. do
  7. systemctl list-unit-files -t service |grep $service > /dev/null 2>&1
  8.     if [ $? == 0 ];then
  9.         echo “is successful, $service 服务已安装” >>/tmp/$(hostname)_shell_$cur_date_$cur_date.log
  10.     else
  11.         yum -y install $service > /dev/null 2>&1
  12.         if [ $? == 0 ];then
  13.             echo “$service服务未安装,已修复” >>/tmp/$(hostname)_shell_$cur_date_$cur_date.log
  14.         else
  15.             echo “is Unsuccessful !!! $service服务安装失败” >> /tmp/$(hostname)_shell_$cur_date_$cur_date.log
  16.         fi
  17.     fi
  18. done
  19. for list1 in $disabled_service
  20. do
  21. systemctl list-unit-files -t service |grep $disabled > /dev/null 2>&1
  22.     if [ $? == 0 ];then
  23.         echo “$list1 is successful ” >>/tmp/$(hostname)_shell_$cur_date_$cur_date.log
  24.     else
  25.         systemctl disable $list1 > /dev/null 2>&1
  26.         if [ $? == 0 ];then
  27.             echo “$list1服务启动参数不同于建议值,已修复” >>/tmp/$(hostname)_shell_$cur_date_$cur_date.log
  28.         else
  29.         echo “is Unsuccessfully !!! $list1 服务启动参数不同于建议值,修改失败”  >>/tmp/$(hostname)_shell_$cur_date_$cur_date.log
  30.         fi
  31.     fi
  32. done

注:上面脚本我只写了disabled service的判断操作,其余的enable、indirect、static的巡检脚本与上面写的脚本语句格式类似。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/775080
推荐阅读
相关标签
  

闽ICP备14008679号