Shell脚本注册到Linux系统服务实例
更新时间:2015年05月11日 09:33:49 投稿:junjie
这篇文章主要介绍了Shell脚本注册到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
相关文章
linux shell实现获取用户输入指定范围的单个字符的两种方法
用shell实现的,要求获取用户输一个字符a-zA-Z实现方法如下,需要的朋友可以参考下2013-03-03Shell特殊变量(Shell $#、$*、$@、$?、$$)的使用
这篇文章主要介绍了Shell特殊变量(Shell $#、$*、$@、$?、$$)的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-03-03script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本
这篇文章主要介绍了script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本,需要的朋友可以参考下2016-04-04
最新评论