seafile-containerized/seahub/scripts/start.sh

58 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2021-01-22 21:22:53 +00:00
#!/bin/bash
function init_seahub {
/scripts/create_data_links.sh
2021-01-31 13:56:03 +00:00
echo "{ \"email\": \"${SEAFILE_ADMIN_EMAIL}\",\"password\": \"${SEAFILE_ADMIN_PASSWORD}\"}" >/opt/seafile/conf/admin.txt
sed -i 's@bind =.*@bind = "0.0.0.0:8000"@' /opt/seafile/conf/gunicorn.conf.py
}
function start_seahub {
/opt/seafile/seafile-server-latest/seahub.sh start
}
2021-01-22 21:22:53 +00:00
function start_socat {
mkdir -p /opt/seafile/seafile-server-latest/runtime
2021-02-01 23:31:01 +00:00
while true; do
while ! nc -z ${SEAFILE_SERVER_HOSTNAME} 8001 2>/dev/null; do
2021-02-01 23:31:01 +00:00
sleep 1
done
echo "Starting socat..."
socat -d -d UNIX-LISTEN:/opt/seafile/seafile-server-latest/runtime/seafile.sock,fork,unlink-early TCP:${SEAFILE_SERVER_HOSTNAME}:8001,forever,keepalive,keepidle=10,keepintvl=10,keepcnt=2
done
}
function watch_server {
while true; do
sleep 1
if ! nc -z ${SEAFILE_SERVER_HOSTNAME} 8082 2>/dev/null; then
echo "Lost connection to seafiler-server. Stopping seahub..."
/opt/seafile/seafile-server-latest/seahub.sh stop
fi
done
}
2021-01-22 21:22:53 +00:00
function watch_seahub {
while true; do
sleep 1
if ! pgrep -f "seahub.wsgi:application" >/dev/null; then
echo "Seahub process was stopped. Exiting container..."
break
fi
done
}
2021-01-22 21:22:53 +00:00
function logger {
tail -f /opt/seafile/logs/seahub.log | tee
}
init_seahub
start_seahub
start_socat &
watch_server &
watch_seahub &
logger &
wait -n
exit $?