Linux下service命令与/etc/init.d/的关系解析

发布时间:2020-06-10编辑:脚本学堂
本文介绍下,在linux操作系统中,有关service服务启动命令与/etc/init.d/服务启动脚本目录的关系,建议初学linux系统的朋友作个参考。

本节内容:
linux下service命令与/etc/init.d/的关系

在linux操作系统中,service xxx启动 /etc/init.d/ 目录下的xxx脚本

例如,一个脚本名为 mysvc保存在/etc/init.d/下,则可以使用命令:
service mysvc 运行mysvc脚本

脚本内容:
 

复制代码 代码示例:

#!/bin/bash
# site: www.jb200.com
echo passed in option $0 $1

if [ $1 = "start" ]
then
        echo myservice started........................................
elif [ $1 = "stop" ]
then
        echo myservice stoped........................................
else
        echo myservice not supported option........................................
fi

操作示例:
 

复制代码 代码示例:

[root@jbxue init.d]# service mysvc start
passed in option /etc/init.d/mysvc start
myservice started........................................

[root@jbxue init.d]# service mysvc stop
passed in option /etc/init.d/mysvc stop
myservice stoped........................................

[root@jbxue init.d]# service mysvc xxx
passed in option /etc/init.d/mysvc xxx
myservice not supported option........................................

这里介绍下,在linux系统中配置服务自启动的方法:
1,服务脚本必须存放在/etc/ini.d/目录下;

2,

复制代码 代码示例:
chkconfig --add servicename

在chkconfig工具服务列表中增加此服务,此时服务会被在/etc/rc.d/rcN.d中赋予K/S入口了;

3,

复制代码 代码示例:
chkconfig --level 35 servicename on

修改服务的默认启动等级。
脚本需要以下内容,否则会 service servicename does not support chkconfig
 

复制代码 代码示例:
# chkconfig: - 85 15
# description: description for the service

#上面为固定格式:- 表示运行级别(所有),85表示开机执行顺序,15为关机顺序