本节内容:
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工具服务列表中增加此服务,此时服务会被在/etc/rc.d/rcN.d中赋予K/S入口了;
3,
修改服务的默认启动等级。
脚本需要以下内容,否则会 service servicename does not support chkconfig
#上面为固定格式:- 表示运行级别(所有),85表示开机执行顺序,15为关机顺序