BigBlueButton: Difference between revisions

From CSCWiki
Jump to navigation Jump to search
No edit summary
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


== Installation ==
== Installation ==
BBB is currently running in an LXC container on xylitol. Here are the steps that were performed to install it.
BBB and Greenlight (the web UI) are currently running in podman containers on xylitol (they are in the same pod, so they share a network namespace). Here are the steps that were performed to install it.


=== Prerequisites ===
=== Prerequisites ===
The container in which BBB is running should have:
The container in which BBB is running should have:
* Ubuntu 16. This is the only Linux distro supported by BBB.
* Ubuntu 18. As of this writing, this is the most recent Linux distro supported by BBB.
* A FQDN (bbb.csclub.uwaterloo.ca).
* A FQDN (bbb.csclub.uwaterloo.ca).
* A public IPv4 address (and optionally an IPv6 address).
* A public IPv4 address (and optionally an IPv6 address).
Line 24: Line 24:
</li>
</li>
<li>
<li>
I wrote an Ansible playbook [https://git.csclub.uwaterloo.ca/?p=merenber/bbb-setup.git;a=summary here] which automates most of the setup
I wrote an Ansible playbook [https://git.csclub.uwaterloo.ca/merenber/bbb-setup here] which automates most of the setup (steps adapted from [https://docs.bigbluebutton.org/2.2/install.html here]).
(steps adapted from [https://docs.bigbluebutton.org/2.2/install.html here]). This also takes care of installing Greenlight, which is the
web frontend for BBB.
<br>
<br>
Git clone the repo into a folder, say <code>/root/ansible</code>. Take a look over the files and customize any
Git clone the repo into a folder, say <code>/root/ansible</code>. Take a look over the files and customize any
values as you see fit. Once you are satisfied, run <code>ansible-playbook playbook.yml</code>.
values as you see fit. Once you are satisfied, run <code>ansible-playbook playbook.yml</code>.
</li>
<li>
Once the playbook has finished, open <code>/opt/greenlight/.env</code> and set the value of <code>DB_PASSWORD</code>.
</li>
</li>
<li>
<li>
Line 42: Line 37:
</li>
</li>
<li>
<li>
Run a podman container for Greenlight (the BBB devs already created one) in the same pod as BBB. Create a .env file and pass it to the --environment-file option.
At some point you may need to run the <code>bundle</code> command as the greenlight user, especially if you are customizing Greenlight.
Add the following to <code>/opt/greenlight/.profile</code>:
<pre>
export PATH=$HOME/.gem/ruby/2.5.0/bin:$PATH
export $(grep -v '^#' ~/.env)
export RAILS_ENV=production
export BUNDLE_APP_CONFIG=~/.bundle
</pre>
This will allow you to run <code>bundle</code> after logging in as the greenlight user.
</li>
<li>
Enable and run the systemd service for Greenlight:
<pre>
systemctl enable greenlight
systemctl start greenlight
</pre>
</li>
</li>
<li>
<li>
Line 79: Line 59:
</li>
</li>
<li>
<li>
To set a custom logo in the top left corner, go to 'Site Settings',
To set a custom logo in the top left corner, go to 'Site Settings', and replace the branding image URL. I'm using a small CSC logo hosted on our git server in the csc-propaganda repo.
and replace the branding image URL. I'm using a small CSC logo hosted
on our git server in the csc-propaganda repo [https://git.csclub.uwaterloo.ca/?p=public/csc-propaganda.git;a=blob_plain;f=csc-logos/csc-logo-small.png;hb=HEAD].
</li>
</li>
</ol>
</ol>

Revision as of 22:27, 28 October 2021

We run an instance of BigBlueButton at https://bbb.csclub.uwaterloo.ca. BigBlueButton is a free and open source videoconferencing platform with many features such as multi-user whiteboards, embedded videos, and interactive polls. You can check out some tutorial videos here.

Installation

BBB and Greenlight (the web UI) are currently running in podman containers on xylitol (they are in the same pod, so they share a network namespace). Here are the steps that were performed to install it.

Prerequisites

The container in which BBB is running should have:

  • Ubuntu 18. As of this writing, this is the most recent Linux distro supported by BBB.
  • A FQDN (bbb.csclub.uwaterloo.ca).
  • A public IPv4 address (and optionally an IPv6 address).
  • Firewall exceptions for TCP ports 80 and 443 and UDP ports 16384 - 32768.
  • Ansible installed. This can be done via apt install ansible.
  • An SSL key pair. See SSL. In this tutorial they are called csclub-wildcard-chain.crt and csclub-wildcard.key.

Instructions

  1. First we will setup the database. Login to coffee as the postgres user, run psql, then run the following:
    CREATE USER greenlight WITH PASSWORD 'replace_this_password';
    CREATE DATABASE greenlight;
    ALTER DATABASE greenlight OWNER TO greenlight;
    
  2. I wrote an Ansible playbook here which automates most of the setup (steps adapted from here).
    Git clone the repo into a folder, say /root/ansible. Take a look over the files and customize any values as you see fit. Once you are satisfied, run ansible-playbook playbook.yml.
  3. Place copies of csclub-wildcard-chain.crt and csclub-wildcard.key in the directory /etc/nginx/ssl. The key file must have permissions 0600.
  4. Restart BBB by running bbb-conf --restart.
  5. Run a podman container for Greenlight (the BBB devs already created one) in the same pod as BBB. Create a .env file and pass it to the --environment-file option.
  6. Now we will need to create an administrator account. There is theoretically a way to do this using bundle, but I wasn't able to get it to work. So here is the workaround I used.
    1. First, login to https://bbb.csclub.uwaterloo.ca using your CSC credentials, then log back out.
    2. Login to coffee as the postgres user, run psql, then run the following:
      \c greenlight
      UPDATE users SET role_id = 2 WHERE username = 'my_csc_username';
      

      When you log back in to Greenlight, you should now be an admin.

  7. To ensure that future sysadmins automatically become Greenlight admins, create a new role called "sysadmin" from the org settings in Greenlight.
  8. To set a custom logo in the top left corner, go to 'Site Settings', and replace the branding image URL. I'm using a small CSC logo hosted on our git server in the csc-propaganda repo.

Some notes about TURN

The BBB docs suggest running your own TURN server. TURN is used for bypassing NATs and firewalls by basically relaying UDP traffic. I did not install one because I didn't think it was necessary, but if we have some users in restrictive firewalled environments, we may have to install our TURN server. Make sure to ask IST for the appropriate port exceptions and update turn-stun-servers.xml.