bigbluebutton-v2.5.11/bigbluebutton-web/run.sh
2023-01-16 14:25:39 +08:00

15 lines
389 B
Bash
Executable File

#!/usr/bin/env bash
IS_BBB_WEB_RUNNING=`ss -an | grep LISTEN | grep 8090 > /dev/null && echo 1 || echo 0`
if [ "$IS_BBB_WEB_RUNNING" = "1" ]; then
echo "bbb-web is running, exiting"
exit 1
fi
if [ "`whoami`" != "bigbluebutton" ]; then
echo "ERROR: bbb-web must run as bigbluebutton user ( because of the uploaded files permissions )"
exit 1
fi
exec grails prod run-app --port 8090