分类:随笔 日期:2020-10-21 作者:caocaofff 浏览:1052
这里举例你的服务名是test
#创建服务文件
vim /etc/init.d/test
chmod a+x /etc/init.d/test
以下是test内容
#! /bin/sh
. /lib/lsb/init-functions
case "$1" in
start)
'/home/test.sh start'
exit 0
;;
stop)
'/home/test.sh stop'
exit 0
;;
*) echo 'require start|stop'
exit 1
;;
esac
#重新加载服务
systemctl daemon-reload
#设置开机启动
systemctl enable test.service
CC版权: 本篇博文采用《CC 协议》,转载必须注明作者和本文链接