Skip to main content

· One min read
    前端资源构建工具,静态模块打包器

5大核心概念

1.Entry
2.Output
3.Loader
4.Plugins
5.Mode

· 2 min read

以root用户登录云监控插件所在服务器。 执行以下命令,进入云监控插件所在目录。 cd /usr/local/cloudmonitor 执行以下命令,重启云监控插件。 ./cloudmonitorCtl.sh restart

那么问题来了,如何停止或者移除云监控呢?

我们来看,cloudmonitorCtl.sh 写了啥

update-rc.d -f ${SERVICE_NAME} start 20 2 3 4 5 . stop 20 0 1 6 .
elif [ -f /sbin/chkconfig ];then
#old centos
cp -f ${SERVICE_FILE} /etc/init.d/${SERVICE_NAME}
chmod +x /etc/init.d/${SERVICE_NAME}
chkconfig --add ${SERVICE_NAME}
chkconfig --level 2345 ${SERVICE_NAME} on
else
echo "unknow os!"
fi
}
uninstall()
{
if [ -f /bin/systemctl ];then
systemctl disable ${SYSTEMD_SERVICE_NAME}
elif [ -f /usr/sbin/update-rc.d -a -f /etc/init.d/${SERVICE_NAME} ];then
#old ubuntu
update-rc.d -f ${SERVICE_NAME} remove
elif [ -f /sbin/chkconfig -a -f /etc/init.d/${SERVICE_NAME} ];then
#old centos
chkconfig --del ${SERVICE_NAME}
else
echo "unknow os!"
fi
}
remove()
{
stop
uninstall
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
install)
install
;;
uninstall)
uninstall
;;
remove)
remove
;;
*)
echo $"Usage: $0 {start|stop|restart|install|uninstall|remove}"

好像看到我认识的字了,stop and remove,so 你懂得