Shell

推荐列表 站点导航

当前位置:首页 > 脚本编程 > Shell >

关闭linux系统服务的shell脚本

来源:网络整理  作者:wy  发布时间:2020-12-23 03:17
使用shell脚本关闭linux系统服务,是非常方便的,本文介绍一个关闭linux服务的shell脚本代码,有需要的朋友参考下。...

例子,关闭linux系统服务的shell脚本。
 

复制代码 代码示例:

#!/bin/bash
# ym97.com/wenku
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"
  ;;
  IT之家)
       echo "change $ser to off"
       chkconfig --level 3 $ser off
       service $ser stop
  ;;
  esac
done

相关热词: shell Linux

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://www.juheyunku.com/jiaob/shell/7843.shtml

相关文章
最新文章
PHP生成奖状 PHP生成奖状

时间:2021-01-06

python实现输入五个数并求 python实现输入五个数并求

时间:2021-01-06

php检测网站是否正常打开 php检测网站是否正常打开

时间:2021-01-05

python怎么右对齐 python怎么右对齐

时间:2021-01-05

Python3爬虫入门之Python3的安 Python3爬虫入门之Python3的安

时间:2021-01-05

如何用PHP接收http请求头信 如何用PHP接收http请求头信

时间:2021-01-05

数据库怎么连接用php写的 数据库怎么连接用php写的

时间:2021-01-05

php后缀怎么打开 php后缀怎么打开

时间:2021-01-05

Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

关闭linux系统服务的shell脚本

2020-12-23 编辑:wy

例子,关闭linux系统服务的shell脚本。
 

复制代码 代码示例:

#!/bin/bash
# ym97.com/wenku
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"
  ;;
  IT之家)
       echo "change $ser to off"
       chkconfig --level 3 $ser off
       service $ser stop
  ;;
  esac
done

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://www.juheyunku.com/jiaob/shell/7843.shtml

相关文章

风云图片

推荐阅读

返回Shell频道首页