wvp-GB28181-pro/arm工控机配置文件/sip/zlm.sh

26 lines
288 B
Bash
Raw Normal View History

2024-06-14 16:56:37 +08:00
#!/bin/sh
function start()
{
echo "Start ZLMediaKit ..."
nohup /root/ZLMediaKit/release/linux/Debug/MediaServer -d &
sleep 3
exit
}
function stop()
{
echo "Stop ZLMediaKit ..."
killall -2 MediaServer
}
case $1 in
start)
start;;
stop)
stop;;
*)
esac