GithubHelp home page GithubHelp logo

jacklee20151 / bbb-install Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bigbluebutton/bbb-install

0.0 1.0 0.0 1.47 MB

BASH script to install BigBlueButton in 15 minutes.

License: GNU Lesser General Public License v3.0

Shell 100.00%

bbb-install's Introduction

bbb-install.sh

bbb-install

bbb-install.sh is a shell script that automates the step-by-step instructions for setting up a BigBlueButton 2.2 server.

With only a few parameters, bbb-install.sh can have your BigBlueButton server setup and ready for use in 15 minutes (depending on your server's internet speed to download and install packages).

For example, given an Ubuntu 16.04 64-bit server with a public IP address, to install/update to the latest build of BigBlueButton 2.2 first SSH into the server as root and run the following command:

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -a

The command will pull down the latest version of bbb-install.sh, send it to the BASH shell interpreter, and pass the parameters -v xenial-220 (the only required parameter) which specifies you want to install BigBlueButton 2.2 and -a which specifies want to install the API demos (this makes it easy to do a few quick tests on the server).

Note: If your server is behind a firewall -- such as behind a corporate firewall or behind an AWS Security Group -- you will need to manually configure the firewall to forward specific internet connections to the BigBlueButton server before you can launch the client.

When bbb-install.sh finishes, you'll see a message that gives you a test URL to launch the BigBlueButton client and join a meeting called 'Demo Meeting'.

# Warning: The API demos are installed and accessible from: 
# 
#    http://xxx.xxx.xxx.xxx
# 
# and
#
#    http://xxx.xxx.xxx.xxx/demo/demo1.jsp  
# 
# These API demos allow anyone to access your server without authentication 
# to create/manage meetings and recordings. They are for testing purposes only. 
# If you are running a production system, remove them by running: 
# 
#    sudo apt-get purge bbb-demo  

When you open the URL, you should see a login to join the meeting Demo Meeting.

bbb-install.sh

Enter your name and click Join. The BigBlueButton client should then load in your browser and prompt you to join the audio.

bbb-install.sh

Click the '[x]' to skip joining the audio. Why? With the above command, the BigBlueButton server is configured to only use an IP address (no security) and, as such, the browser will block access to the webcam and microphone.

For a production setup of BigBlueButton, the server needs to serve web pages using transport level security (TLS). In other words, you can only access this server via HTTP (unencrypted) and not HTTPS (encrypted), as the server currently lacks a secure socket level (SSL) certificate configured for the server's hostname.

Without TLS/SSL support, the browser will not allow access to the user's webam or microphone via the builtin real-time communications (WebRTC) libraries.

bbb-install.sh can automatically request a TLS/SSL certificate (from Let's Encrypt) and configure the BigBlueButton server to use that certificate. The following sections show you how.

Getting ready

Before running bbb-install.sh, we strongly recommend that you:

  • Read through all the documentation in this page
  • Ensure that your server meets the minimal server requirements
  • Configure a fully qualified domain name (FQDN), such as bbb.example.com, that resolves to the external IP address of the server.

To setup a FQDN, you need to purchase a domain name from a domain name system (DNS) provider, such as GoDaddy or Network Solutions. Once purchased, you'll use the web tools provided by the DNS provider to create an A Record that resolves to the public IP address of your BigBlueButton server. (Check the DNS provider's documentation for details on how to setup the A Record.)

With a FQDN domain name place, you can then pass a few additional parameters to bbb-install.sh to have it:

  • Request and install a 4096 bit TLS/SSL certificate from Let's Encrypt (we love Let's Encrypt), and (optionally)
  • Install and configure Greenlight to provide a simple front-end for users to enable them to setup rooms, hold online sessions, and manage recordings. (Greenlight also lets you, the administrator, manage user accounts within Greenlight).

Once the BigBlueButton server is configured with an TLS/SSL certificate, your users can use FireFox and Chrome (recommended browsers) to access and share their audio, video, and screen in a BigBlueButton session via WebRTC.

The full source code for bbb-install.sh is here. To make it easy for anyone to run the script with a single command, we host the latest version of the script at https://ubuntu.bigbluebutton.org/bbb-install.sh.

Server choices

There are many hosting companies that can provide you virtual and dedicated servers to run BigBlueButton. We list a few popular choices below. Note: We are not making any recommendations here, just listing some of the more popular choices.

For quick setup, Digital Ocean offers both virtual servers with Ubuntu 16.04 64-bit and a single public IP address (no firewall). Hetzner offers dedicated servers with single IP address.

Other popular choices, such as ScaleWay (choose either Bare Metal or Pro servers) and Google Compute Engine, offer servers that are setup behind network address translation (NAT). That is, they have both an internal and external IP address. When installing on these servers, the bbb-install.sh will detect the internal/external addresses and configure BigBlueButton accordingly.

Another popular choice is Amazon Elastic Compute Cloud. We recommend a c5.xlarge (or larger) instance. All EC2 servers are, by default, is behind a firewall (which Amazon calls a security group). You will need to manually configure the security group before installing BigBlueButton on EC2 and, in a similar manner, on Azure and Google Compute Engine (GCE). (See screen shots in next section.)

Finally, if bbb-install.sh is unable to configure your server behind NAT, we recommend going through the step-by-step for installing BigBlueButton. (Going through the steps is also a good way to understand more about how BigBlueButton works).

Configuring the firewall

If you want to install BigBlueButton on a server behind a firewall, such an Amazon's EC2 security group, you first need to configure the firewall to forward incoming traffic on the following ports:

  • TCP/IP port 22 (for SSH)
  • TCP/IP ports 80/443 (for HTTP/HTTPS)
  • UDP ports in the range 16384 - 32768 (for FreeSWITCH/HTML5 client RTP streams)

If you are using EC2, you should also assign your server an Elastic IP address to prevent it from getting a new IP address on reboot.

On Microsot Azure, when you create an instance you need to add the following inbound port rules to enable incoming connections on ports 80, 443, and UDP port range 16384-32768:

Azure Cloud

On Google Compute Engine, when you create an instance you need to enable traffic on port 80 and 443.

Google Compute Engine 80-443

After the instance is created, you need to add a firewall rule to allow incoming UDP traffic on the port range 16384-32768.

Google Compute Engine Firewall

Installation Videos

Using Digital Ocean as an example, we put together this video to get you going quickly: Using bbb-install.sh to setup BigBlueButton on Digital Ocean.

Using Amazon EC2, see Install using bbb-install.sh on EC2.

Command options

You can get help by passing the -h option.

$ wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -h
Installer script for setting up a BigBlueButton 2.2 server.

This script also supports installation of a separate coturn (TURN) server on a separate server.

USAGE:
    bbb-install.sh [OPTIONS]

OPTIONS (install BigBlueButton):

  -v <version>           Install given version of BigBlueButton (e.g. 'xenial-220') (required)

  -s <hostname>          Configure server with <hostname>
  -e <email>             Email for Let's Encrypt certbot
  -a                     Install BBB API demos
  -g                     Install GreenLight

  -c <hostname>:<secret> Configure with coturn server at <hostname> using <secret>

  -p <host>              Use apt-get proxy at <host>

  -r <host>              Use alternative apt repository (such as packages-eu.bigbluebutton.org)
  -d                     Skip SSL certificates request (use provided certificates from mounted volume)

  -h                     Print help

OPTIONS (install coturn):

  -c <hostname>:<secret> Configure coturn with <hostname> and <secret> (required)
  -e <email>             Email for Let's Encrypt certbot (required)


EXAMPLES

Setup a BigBlueButton server

    ./bbb-install.sh -v xenial-220
    ./bbb-install.sh -v xenial-220 -s bbb.example.com -e [email protected]
    ./bbb-install.sh -v xenial-220 -s bbb.example.com -e [email protected] -g
    ./bbb-install.sh -v xenial-220 -s bbb.example.com -e [email protected] -g -c turn.example.com:1234324

Setup a coturn server

    ./bbb-install.sh -c turn.example.com:1234324 -e [email protected]

SUPPORT:
     Source: https://github.com/bigbluebutton/bbb-install
   Community: https://bigbluebutton.org/support

Install and configure with an IP address only

To install BigBlueButton 2.2 (no hostname or TLS/SSL certificate):

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220

That's it. The installation should finish in about 15 minutes (depending on the server's internet connection) with the following message:

** Potential problems described below **

......
# Warning: The API demos are installed and accessible from:
#
#    http://xxx.xxx.xxx.xxx/demo/demo1.jsp
#
# These API demos allow anyone to access your server without authentication
# to create/manage meetings and recordings. They are for testing purposes only.
# If you are running a production system, remove them by running:
#
#    sudo apt-get purge bbb-demo

The script also installs the bbb-demo package so you can immediately test out the install. If you want to remove the API demos, use the command

sudo apt-get purge bbb-demo

If you want to use this server with a third-party integration, such as Moodle, you can get the BigBlueButton server's hostname and shared secret with the command sudo bbb-conf --secret.

# bbb-conf --secret

       URL: http://xxx.xxx.xxx.xxx/bigbluebutton/
    Secret: yyy

      Link to the API-Mate:
      http://mconf.github.io/api-mate/#server=http://xxx.xxx.xxx.xxx/bigbluebutton/&sharedSecret=yyy

Since this default use of bbb-install.sh does not configure a SSL/TLS certificate, while you can login to the server, you won't be able to share audio/video as WebRTC requires a SSL/TLS certificate.

Install with SSL/TLS

Before bbb-install.sh can install a SSL/TLS certificate, you will need to provide two pieces of information:

  • A fully qualified domain name (FQDN), such as bbb.example.com, that resolves to the public IP address of your server
  • An e-mail address

When you have setup the FQDN, check that it correctly resolves to the external IP address of the server using the dig command.

dig bbb.example.com @8.8.8.8

Note: we're using bbb.example.com as an example hostname. You would substitute your real hostname for the check (and for the commands below).

With just these two pieces of information -- FQDN and e-mail address -- you can use bbb-install.sh to automate the configuration of the BigBlueButton server with a TLS/SSL certificate. For example, to install BigBlueButton 2.2 with a TLS/SSL certificate from Let's Encrypt using bbb.example.com and [email protected], enter the command

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -s bbb.example.com -e [email protected]

(again, you would substitute bbb.example.com and [email protected] with your server's FQDN and your e-mail address).

The bbb-install.sh script will also install a cron job that automatically renews the Let's Encrypt certificate so it doesn't expire. Cool.

Install API Demos

You can install the API demos by adding the -a option.

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -s bbb.example.com -e [email protected] -a

Warning: These API demos allow anyone to access your server without authentication to create/manage meetings and recordings. They are for testing purposes only. Once you are finished testing, you can remove the API demos with sudo apt-get purge bbb-demos.

Install Greenlight

Greenlight is a simple front-end for BigBlueButton written in Ruby on Rails. It lets users create accounts, have permanent rooms, and manage their recordings. It also lets you, as the administrator, manage the user accounts (such as approve or deny users).

You can install Greenlight by adding the -g option.

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -s bbb.example.com -e [email protected] -g

Once Greenlight is installed, it redirects the default home page to Greenlight. You can also configure GreenLight to use OAuth2 authentication.

To launch Greenlight, simply open the URL of your server, such as https://bbb.example.com/. You should see the Greenlight landing page.

bbb-install.sh

To setup an administrator account for Greenlight (so you can approve/deny signups), enter the following commands

cd greenlight/
docker exec greenlight-v2 bundle exec rake admin:create

This command will create an admin account and set a default password. After running this command, login using the given username/password and change the default password. Next, select 'Administrator' and choose 'Organization'.

bbb-install.sh

You can then select 'Site Settings' on the left-hand side and change the Registration Method to 'Approve/Decline'.

bbb-install.sh

You can now contol who creates accounts on your BigBlueButton server. For more information see Greenlight administration.

Linking /var/bigbluebutton to another directory

The install script allows you to pass a path which will be used to create a symbolic link with /var/bigbluebutton

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -m /mnt/test

This allows users to store the contents of /var/bigbluebutton, which can get quite large in a seperate volume

Doing everything with a single command

If you want to setup BigBlueButton 2.2 with a TLS/SSL certificate and GreenLight, you can do this all with a single command:

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -s bbb.example.com -e [email protected] -g

Furthermore, you can re-run the same command later to update your server to the latest version of BigBlueButton 2.2. We announce updates to BigBlueButton to the bigbluebutton-dev mailing list.

Install a TURN server

You can use bbb-install.sh to automate the steps to setup a TURN server for BigBlueButton.
Note: This step is optional, but recommended if your BigBlueButton server is publically available on the internet and will be accessed by users who may be behind restrictive firewalls.

BigBlueButton normally requires a wide range of UDP ports to be available for WebRTC communication. In some network restricted sites or development environments, such as those behind NAT or a firewall that restricts outgoing UDP connections, users may be unable to make outgoing UDP connections to your BigBlueButton server.

The TURN protocol is designed to allow UDP-based communication flows like WebRTC to bypass NAT or firewalls by having the client connect to the TURN server, and then have the TURN server connect to the destination on their behalf.

You need a separate server (not the BigBlueButton server) to setup as a TURN server. Specifically you need:

  • An Ubuntu 18.04 server with a public IP address

On the TURN server, you need to have the following ports (in additon port 22) availalbe for BigBlueButton to connect (port 3478 and 443) and for the coturn to connect to your BigBlueButton server (49152 - 65535).

Ports Protocol Description
3478 TCP/UDP coturn listening port
443 TCP/UDP TLS listening port
49152-65535 UDP relay ports range

We recommend Ubuntu 18.04 as it has a later version of coturn than Ubuntu 16.04. Also, this TURN server does not need to be very powerful as it will only relay communications from the BigBlueButton client to the BigBlueButton server when necessary. A dual core server on Digital Ocean, for example, which offers servers with public IP addresses, is a good choice.

Next, to configure the TURN server you need:

  • A fully qualified domain name (FQDN) with a DNS entry that resolves to the external public IP address of the TURN server
  • An e-mail address for Let's Encrypt
  • A secret key (it can be an 8 to 16 character random string that you create).

With the above information, you can setup a TURN server for BigBlueButton using bbb-install.sh as follows

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -c <FQDN>:<SECRET> -e <EMAIL>

Note, we've omitted the -v option, which causes bbb-install.sh to just install and configure coturn. For example, using turn.example.com as the FQDN, 1234abcd as the shared secret, and [email protected] as the email address, you can setup a TURN server for BigBlueButton using the command

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -c turn.example.com:1234abcd -e [email protected]

bbb-install.sh uses Let's Encrypt to configure coturn to use a SSL certificate. With a SSL certificate in place, coturn can relay access to your BigBlueButton server via TCP/IP on port 443. This means if a user is behind a restrictive firewall that blocks all outgoing UDP connections, the TURN server can accept connections from the user via TCP/IP on port 443 and relay the data to your BigBlueButton server via UDP.

With the TURN server in place, you can configure your BigBlueButton server to use the TURN server by running the bbb-install.sh command again and adding the same -c <FQDN>:<SECRET>. For example,

wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s -- -v xenial-220 -s bbb.example.com -e [email protected] -g -c turn.example.com:1234abcd

You can re-use a single TURN server for multiple BigBlueButton installations.

Next Steps

If you intend to use this server for production you should uninstall the API demos using the command

apt-get purge bbb-demo

You can also do a number of customizations to your server as well.

Troubleshooting

Packaging server is blocked

We are currently hosting the packaging on a Digital Ocean servlet, but recently the IP range for some Digital Ocean servers has been blocked in some countries.

If you're having troubles installing, try running the bbb-install.sh command but change the value

https://ubuntu.bigbluebutton.org/bbb-install.sh

to

https://packages-eu.bigbluebutton.org/bbb-install.sh

Greenlight not running

If on first install Greenlight gives you a 500 error when accessing it, you can restart Greenlight.

Tomcat7 not running

If on the initial install you see

# Not running:  tomcat7 or grails LibreOffice

just run sudo bbb-conf --check again. Tomcat7 may take a bit longer to start up and isn't running the first time you run sudo bbb-conf --check.

Getting Help

If you have feedback on the script, or need help using it, please post to the BigBlueButton Setup mailing list with details of the issue (and include related information such as steps to reproduce the error).

If you encounter an error with the script (such as it not completing or throwing an error), please open GitHub issue and provide steps to reproduce the issue.

Limitations

If you are running your BigBlueButton behind a firewall, such as on EC2, this script will not configure your firewall. You'll need to configure the firewall manually.

bbb-install's People

Contributors

ffdixon avatar joshua-arts avatar ghazitriki avatar farhatahmad avatar shawn-higgins1 avatar antobinary avatar greml1n avatar namiarj avatar tiagojacobs avatar adamnoonan92 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.