Linux注册系统服务

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Linux注册系统服务

Linux下注册一个系统服务,开机自启动.

1、脚本编写

#vim test.sh

#!/bin/bash

#description: hello.sh

#chkconfig: 2345 20 81

EXEC_PATH=/usr/local/

EXEC=hello.sh

DAEMON=/usr/local/hello.sh

PID_FILE=/var/run/hello.sh.pid

. /etc/rc.d/init.d/functions

if [ ! -x $EXEC_PATH/$EXEC ] ; then

echo "ERROR: $DAEMON not found"

exit 1

fi

stop()

{

echo "Stoping $EXEC ..."

ps aux | grep "$DAEMON" | kill -9 `awk '{print $2}'` >/dev/null 2>&1 rm -f $PID_FILE

usleep 100

echo "Shutting down $EXEC: [ OK ]"

}

start()

{

echo "Starting $EXEC ..."

$DAEMON > /dev/null &

pidof $EXEC > $PID_FILE

usleep 100

echo "Starting $EXEC: [ OK ]"

}

restart()

{

stop

start

}

case "$1" in

start)

start

;;

stop)

stop

;;

restart)

restart

;;

status)

status -p $PID_FILE $DAEMON

;;

*)

echo "Usage: service $EXEC {start|stop|restart|status}" exit 1

esac

exit $?

2、注册服务

# chmod 700 test.sh

# cp test.sh /etc/init.d/

# chkconfig --add test.sh

# chkconfig --list

3、删除服务

# chkconfig --del test.sh

相关文档
最新文档