博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
service脚本的写法
阅读量:5241 次
发布时间:2019-06-14

本文共 957 字,大约阅读时间需要 3 分钟。

/etc/init.d/appservice.sh内容如下:

#!/bin/bash
# chkconfig: 2345 20 80
# description:
# For SELinux we need to use 'runuser' not 'su'
if [ -x "/sbin/runuser" ]; then
    SU="/sbin/runuser -s /bin/sh"
else
    SU="su -s /bin/sh"
fi
fileroot=/opt/cmbccd/repost/
#program=${fileroot}"start-appservice.sh"
pidfile=${fileroot}"repost.pid"
case "$1" in
start)
    echo "starting repost..."
        if [ -f $pidfile ];
    then
        echo "service is running!"
        echo "[fail]"
    else
        #sh $program
        $SU kafka -c ${fileroot}"start-appservice.sh"
        echo "[success]"
        fi
    ;;
stop)
    if [ -f $pidfile ];
    then
        pid=$(cat $pidfile)
        echo "stopping service,the pid is:" $pid
        echo $(kill -9 $pid)
        echo $(rm -r $pidfile)
        echo "[success]"
    else
        echo "service is stopped!"
        echo "[fail]"
    fi
    ;;
status)
    if [ -f $pidfile ];
    then
        pid=$(cat $pidfile)
        echo "service is running,pid is:" $pid
    else
        echo "service is stopped!"
    fi
    ;;
*)
    echo "Usage: $0 {start|stop|status}"
    exit 1
esac

转载于:https://www.cnblogs.com/dotagg/p/6744285.html

你可能感兴趣的文章
Java页面中文编码要转换两次encodeURI
查看>>
C# Image和Byte[]互相转换
查看>>
Jmeter组件认识
查看>>
C#反射(转载)
查看>>
SQL 课程
查看>>
排序算法
查看>>
url的反向解析
查看>>
如何成为一名优秀的前端工程师
查看>>
《TCP-IP详解卷1》中BGP部分的笔记
查看>>
安装Xamarin.Android几个经典介面
查看>>
03-树1 树的同构
查看>>
标准C程序设计七---101
查看>>
GDB实战
查看>>
内存探究记录
查看>>
6. Find Peak Element
查看>>
Excel 导出 按钮
查看>>
线段树
查看>>
pandas的concat方法
查看>>
一个老程序员的十年回顾感想
查看>>
python中赋值、浅拷贝、深拷贝详解(转)
查看>>