码迷,mamicode.com
首页 > 系统相关 > 详细

Linux中service命令和/etc/init.d/的关系

时间:2015-01-17 23:30:08      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:

Linux中service命令和/etc/init.d/的关系
 
service xxx启动 /etc/init.d/ 目录下的xxx脚本
如一个脚本名为 mysvc保存在/etc/init.d/下可以用 service mysvc 运行mysvc脚本
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  www.2cto.com  
 
[root@localhost init.d]# service mysvc start
passed in option /etc/init.d/mysvc start
myservice started........................................
 
[root@localhost init.d]# service mysvc stop
passed in option /etc/init.d/mysvc stop
myservice stoped........................................
 
[root@localhost init.d]# service mysvc xxx
passed in option /etc/init.d/mysvc xxx
myservice not supported option........................................

Linux中service命令和/etc/init.d/的关系

标签:

原文地址:http://www.cnblogs.com/lidabo/p/4231270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!