Linux 开机启动服务

概述

  在Linux下不是所有的软件安装完成后都有开机启动服务,有些要自己手动去添加或删除.

7.0版本之前

  chkconfig

    --list  开机启动服务查询.

    --add   添加开机启动服务. 添加的开机启动服务必须在/etc/init.d目录下才可以使用该选项添加.

    --level    设置开机启动服务在某个级别下开启或关闭.

示例 : chkconfig  --level  35 httpd  on      //httpd服务在35级别下开机启动.

    --del    删除开机启动服务

示例 : chkconfig  --level  httpd    //删除httpd的开机启动服务.

7.0版本之后

//Centos7以后不再使用chkconfig而是使用systemctl命令.但是依然兼容.
systemctl  list-unit-files   //查看开机启动项
systemctl  enable    httpd   //开启httpd服务
systemctl  disable    httpd  //关闭httpd服务

 

posted @ 2020-11-27 16:18  丿上善若水  阅读(238)  评论(0编辑  收藏  举报