centos7编写自启动脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7编写自启动脚本相关的知识,希望对你有一定的参考价值。
vim srvd
#!/bin/bash
function start()
{
# 启动命令
}
function stop()
{
# 停止命令
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "Usage : start | stop | restart"
;;
esac
chmod a+x srvd
cp -arf srvd /etc/init.d/
systemctl start srvd
chkconfig --add srvd
chkconfig srvd on
以上是关于centos7编写自启动脚本的主要内容,如果未能解决你的问题,请参考以下文章