关闭linux系统服务的shell脚本

发布时间:2020-03-16编辑:脚本学堂
使用shell脚本关闭linux系统服务,是非常方便的,本文介绍一个关闭linux服务的shell脚本代码,有需要的朋友参考下。

例子,关闭linux系统服务的shell/ target=_blank class=infotextkey>shell脚本
 

复制代码 代码示例:
#!/bin/bash
# www.jb200.com
for ser in `chkconfig --list |grep 3:on |awk '{print $1}'`
do
  echo $ser
  case $ser in (crond | irqbalance | microcode_ctl | network | random | sendmail
                | sshd | syslog | messagebus | haldaemon | readahead_early
                | apmd | readahead_later | readahead | iptables
                | LVM2-monitor|xinetd | auditd | cpuspeed )
       echo "Base services, Skip"
  ;;
  *)
       echo "change $ser to off"
       chkconfig --level 3 $ser off
       service $ser stop
  ;;
  esac
done