88 lines
2.2 KiB
Plaintext
88 lines
2.2 KiB
Plaintext
# ===================
|
|
#
|
|
# see:
|
|
# - https://docs.bigbluebutton.org/administration/install/
|
|
#
|
|
# ===================
|
|
|
|
FQDN_HOSTNAME="bbb.oopen.de"
|
|
ADMIN_EMAIL="ckubu-adm@oopen.de"
|
|
|
|
FQDN_HOSTNAME="agr-bbb.erpe.org"
|
|
ADMIN_EMAIL="agr@vvn-bda.de"
|
|
|
|
# ===
|
|
# 1 Pre-installation checks
|
|
# ===
|
|
|
|
# see: https://docs.bigbluebutton.org/administration/install/#pre-installation-checks
|
|
|
|
# ---
|
|
# Run script bbb-pre-install.sh
|
|
# ---
|
|
|
|
# The script does:
|
|
#
|
|
# - installs missing debian packages
|
|
|
|
# - checks the locale parameter and sets it to 'en_US.UTF-8' if necessary
|
|
#
|
|
# - Installs the latest version of Docker if necessary
|
|
#
|
|
/usr/local/src/bigbluebutton/bbb-pre-install.sh
|
|
|
|
|
|
# ===
|
|
# 2. Install
|
|
# ===
|
|
|
|
# ---
|
|
# Install BigBlueButton (incl. Greenligth) by running script 'bbb-install.sh' lacally
|
|
# ---
|
|
|
|
mkdir -p /usr/local/src/bbb
|
|
|
|
git clone https://github.com/bigbluebutton/bbb-install.git /usr/local/src/bbb/
|
|
|
|
# run commnad 'bbb-install.sh'
|
|
#
|
|
# -w Install UFW firewall (recommended)
|
|
# -v <version> Install given version of BigBlueButton (e.g. 'focal-270') (required)
|
|
# -s <hostname> Configure server with <hostname>
|
|
# -e <email> Email for Let's Encrypt certbot
|
|
# -g Install Greenlight version 3
|
|
#
|
|
/usr/local/src/bbb/bbb-install.sh -w -v focal-270 -s ${FQDN_HOSTNAME} -e ${ADMIN_EMAIL} -g
|
|
|
|
|
|
# ---
|
|
# Install BigBlueButton (incl. Greenligth) directly
|
|
# ---
|
|
|
|
# Download and pipe downlaoded stream directly through 'bash -s'
|
|
#
|
|
# -w Install UFW firewall (recommended)
|
|
# -v <version> Install given version of BigBlueButton (e.g. 'focal-270') (required)
|
|
# -s <hostname> Configure server with <hostname>
|
|
# -e <email> Email for Let's Encrypt certbot
|
|
# -g Install Greenlight version 3
|
|
#
|
|
wget -qO- https://raw.githubusercontent.com/bigbluebutton/bbb-install/v2.7.x-release/bbb-install.sh \
|
|
| bash -s -- -w -v focal-270 -s ${FQDN_HOSTNAME} -e ${ADMIN_EMAIL} -g
|
|
|
|
/usr/local/src/bigbluebutton/bbb-pre-install.sh
|
|
|
|
|
|
# ---
|
|
# 2.) Install BigBlueButton
|
|
# ---
|
|
|
|
wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v bionic-230 -s $FQDN_HOSTNAME -e $ADMIN_EMAIL -a -w
|
|
|
|
|
|
# --
|
|
# Installation finished
|
|
# --
|
|
|
|
# =====================================================================================
|