简单定制chkconfig

简介: 环境:Redhat shell>vim /etc/init.d/lin_credible #!  /bin/bash # #  lin_credible # #  chkconfig: 2345  13  90 #  description:  It's a test about "chkconfig"! #  这下面就可以添加一些服务等之类的启动脚本或之类滴.当然,

环境:Redhat

shell>vim /etc/init.d/lin_credible

#!  /bin/bash
#
#  lin_credible
#
chkconfig: 2345  13  90
description:  It's a test about "chkconfig"!
#  这下面就可以添加一些服务等之类的启动脚本或之类滴.当然,可以做假故障处理来玩儿喔 !
#

shell>chmod 755 /etc/init.d/lin_credible

shell>chkconfig lin_credible --level 2345 on

shell>chkconfig --list | grep lin_credible

.....

目录
相关文章
|
5月前
|
Unix Linux
# chkconfig: 2345 40 60 是什么
【6月更文挑战第10天】# chkconfig: 2345 40 60 是什么
31 5
|
Linux
一文让你掌握Chkconfig命令的使用
一文让你掌握Chkconfig命令的使用
101 0
开机启动
开机启动
151 0
|
JavaScript 前端开发 Shell
|
JavaScript 前端开发 Shell