标签:开机 esc stat bin desc 服务脚本 服务 script cas
#!/bin/sh
#chkconfig: 2345 80 05
#description: api-server
start() {
nohup java -jar ./
}
stop() {
}
status() {
`ps -ef|grep `
}
case $1 in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
*)
echo "api-server Usage:"
echo "service api-server start | stop | restart | status"
;;
mv api-server /etc/init.id/
chkconfig --list //查看服务
chkconfig --add api-server //添加服务
service api-server status
service api-server start
service api-server stop
标签:开机 esc stat bin desc 服务脚本 服务 script cas
原文地址:https://www.cnblogs.com/pengsn/p/13278636.html