Outils pour utilisateurs

Outils du site


bbb:big_blue_button

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

bbb:big_blue_button [2018/09/10 07:27] – créée ronanbbb:big_blue_button [2019/01/10 15:46] (Version actuelle) rguyader
Ligne 2: Ligne 2:
  
 ===== Network ===== ===== Network =====
- +<code bash> 
-  # vim /etc/network/interfaces +vim /etc/network/interfaces 
 +</code>
   auto lo   auto lo
   iface lo inet loopback   iface lo inet loopback
Ligne 16: Ligne 16:
     pre-down ip route del 0.0.0.0/0 via 192.168.60.254     pre-down ip route del 0.0.0.0/0 via 192.168.60.254
     pre-down ip route del 192.168.60.254 dev ens18     pre-down ip route del 192.168.60.254 dev ens18
- +<code bash> 
-  # vim /etc/resolv.conf +vim /etc/resolv.conf 
- +</code>
   nameserver 9.9.9.9 # or another DNS   nameserver 9.9.9.9 # or another DNS
   search <FQDN>   search <FQDN>
- +<code bash> 
-  # vim /etc/hosts +vim /etc/hosts 
 +</code>
   <IP>  <FQDN>  <ALIAS>   <IP>  <FQDN>  <ALIAS>
- +<code bash> 
-  # reboot +reboot 
 +</code>
 ===== Installation ===== ===== Installation =====
  
Ligne 33: Ligne 33:
  
 **If KVM** : # apt install qemu-guest-agent **If KVM** : # apt install qemu-guest-agent
- +<code bash> 
-  # apt update +apt update 
-  # apt upgrade +apt upgrade 
-  # locale-gen en_US.UTF-8 +locale-gen en_US.UTF-8 
-  # apt install haveged +apt install haveged 
 +</code>
 ==== Installation automatique ==== ==== Installation automatique ====
- +<code bash> 
-  # wget https://raw.githubusercontent.com/bigbluebutton/bbb-install/master/bbb-install.sh +wget https://raw.githubusercontent.com/bigbluebutton/bbb-install/master/bbb-install.sh 
-  # chmod +x ./bbb-install.sh  +chmod +x ./bbb-install.sh  
-  # ./bbb-install.sh -v xenial-200 -s <FQDN> +./bbb-install.sh -v xenial-200 -s <FQDN> 
-  # bbb-conf --setip <FQDN> +bbb-conf --setip <FQDN> 
 +</code>
 === Configuration SSL === === Configuration SSL ===
  
 == Nginx == == Nginx ==
- +<code bash> 
-  # mkdir /etc/nginx/ssl +mkdir /etc/nginx/ssl 
-  # cp private-key.key /etc/nginx/ssl +cp private-key.key /etc/nginx/ssl 
-  # chmod 0600 /etc/nginx/ssl/private-key.key +chmod 0600 /etc/nginx/ssl/private-key.key 
-  # cp certificate.crt /etc/nginx/ssl +cp certificate.crt /etc/nginx/ssl 
-  # openssl dhparam -out /etc/nginx/ssl/dhp-2048.pem 2048 +openssl dhparam -out /etc/nginx/ssl/dhp-2048.pem 2048 
- +</code> 
-  # vim /etc/nginx/sites-enabled/bigbluebutton +<code bash> 
 +vim /etc/nginx/sites-enabled/bigbluebutton 
 +</code>
 Add after "server_name" : Add after "server_name" :
  
Ligne 74: Ligne 75:
  
 == FreeSWITCH == == FreeSWITCH ==
- +<code bash> 
-  # vim /opt/freeswitch/conf/sip_profiles/external.xml +vim /opt/freeswitch/conf/sip_profiles/external.xml 
 +</code>
 Change "ws-binding" to "wss-binding" and ":5066" by ":7443". Change "ws-binding" to "wss-binding" and ":5066" by ":7443".
- +<code bash> 
-  # vim /etc/bigbluebutton/nginx/sip.nginx +vim /etc/bigbluebutton/nginx/sip.nginx 
 +</code>
   proxy_pass https://<FQDN>:7443;   proxy_pass https://<FQDN>:7443;
  
 == Load HTTPS connection default == == Load HTTPS connection default ==
- +<code bash> 
-  # vim /var/lib/tomcat7/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties +vim /var/lib/tomcat7/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties 
 +</code>
   bigbluebutton.web.serverURL=https://<FQDN>   bigbluebutton.web.serverURL=https://<FQDN>
- +<code bash> 
-  # vim /usr/share/red5/webapps/screenshare/WEB-INF/screenshare.properties +vim /usr/share/red5/webapps/screenshare/WEB-INF/screenshare.properties 
 +</code>
   jnlpUrl=https://<FQDN>/screenshare     jnlpUrl=https://<FQDN>/screenshare  
   jnlpFile=https://<FQDN>/screenshare/screenshare.jnlp   jnlpFile=https://<FQDN>/screenshare/screenshare.jnlp
- +<code bash> 
-  # sed -e 's|http://|https://|g' -i /var/www/bigbluebutton/client/conf/config.xml +sed -e 's|http://|https://|g' -i /var/www/bigbluebutton/client/conf/config.xml 
-  # vim /usr/local/bigbluebutton/core/scripts/bigbluebutton.yml +vim /usr/local/bigbluebutton/core/scripts/bigbluebutton.yml 
 +</code>
   playback_protocol: https   playback_protocol: https
- +<code bash> 
-  # vim /var/lib/tomcat7/webapps/demo/bbb_api_conf.jsp +vim /var/lib/tomcat7/webapps/demo/bbb_api_conf.jsp 
 +</code>
   String BigBlueButtonURL = "https://<FQDN>/bigbluebutton/";   String BigBlueButtonURL = "https://<FQDN>/bigbluebutton/";
- +<code bash> 
-  # bbb-conf --restart +bbb-conf --restart 
 +</code>
 ===== HTML5 client installation ===== ===== HTML5 client installation =====
  
 ==== MongoDB and NodeJS ==== ==== MongoDB and NodeJS ====
- +<code bash> 
-  # apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 +apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 
-  # echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-3.4.list +echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-3.4.list 
-  # apt update +apt update 
-  # apt install install -y mongodb-org curl +apt install install -y mongodb-org curl 
-  # curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - +curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - 
-  # apt install -y nodejs +apt install -y nodejs 
 +</code>
 ==== HTML5 client ==== ==== HTML5 client ====
- +<code bash> 
-  # apt install bbb-html5 +apt install bbb-html5 
 +</code>
 To load HTML5 client by default, edit ///var/lib/tomcat7/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties// : To load HTML5 client by default, edit ///var/lib/tomcat7/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties// :
  
Ligne 127: Ligne 128:
   # Force all moderators to join the meeting using the HTML5 client     # Force all moderators to join the meeting using the HTML5 client  
   moderatorsJoinViaHTML5Client=true   moderatorsJoinViaHTML5Client=true
- +<code bash> 
-  # bbb-conf --restart +bbb-conf --restart 
 +</code>
 If the service "kurento-media-server" is masked : If the service "kurento-media-server" is masked :
- +<code bash> 
-  # systemctl unmask kurento-media-server +systemctl unmask kurento-media-server 
-  # systemctl enable kurento-media-server +systemctl enable kurento-media-server 
-  # systemctl start kurento-media-server +systemctl start kurento-media-server 
 +</code>
 ===== Greenlight frontend ===== ===== Greenlight frontend =====
  
 ==== Docker ==== ==== Docker ====
- +<code bash> 
-  # apt install apt-transport-https ca-certificates curl software-properties-common +apt install apt-transport-https ca-certificates curl software-properties-common 
-  # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 
-  # add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" +add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 
-  # apt update +apt update 
-  # apt install docker-ce +apt install docker-ce 
 +</code>
 ==== Greenlight ==== ==== Greenlight ====
- +<code bash> 
-  # mkdir ~/greenlight && cd ~/greenlight +mkdir ~/greenlight && cd ~/greenlight 
-  # docker run --rm bigbluebutton/greenlight:v2 cat ./sample.env > env +docker run --rm bigbluebutton/greenlight:v2 cat ./sample.env > env 
-  # docker run --rm bigbluebutton/greenlight:v2 bundle exec rake secret +docker run --rm bigbluebutton/greenlight:v2 bundle exec rake secret 
 +</code>
 Write the secret on the "SECRET_KEY_BASE" parameter in "//~/greenlight/env//". Write the secret on the "SECRET_KEY_BASE" parameter in "//~/greenlight/env//".
- +<code bash> 
-  # bbb-conf --secret +bbb-conf --secret 
 +</code>
 Write the URL and the secret in "//~/greenlight/env//" file on the "BIGBLUEBUTTON_ENDPOINT" and "BIGBLUEBUTTON_SECRET" parameters. Write the URL and the secret in "//~/greenlight/env//" file on the "BIGBLUEBUTTON_ENDPOINT" and "BIGBLUEBUTTON_SECRET" parameters.
  
 Check configuration : Check configuration :
- +<code bash> 
-  # docker run --rm --env-file env bigbluebutton/greenlight:v2 bundle exec rake conf:check +docker run --rm --env-file env bigbluebutton/greenlight:v2 bundle exec rake conf:check 
 +</code>
 === Nginx === === Nginx ===
- +<code bash> 
-  # docker run --rm bigbluebutton/greenlight:v2 cat ./greenlight.nginx | sudo tee /etc/bigbluebutton/nginx/greenlight.nginx +docker run --rm bigbluebutton/greenlight:v2 cat ./greenlight.nginx | sudo tee /etc/bigbluebutton/nginx/greenlight.nginx 
-  # systemctl restart nginx+systemctl restart nginx 
 +</code>
  
 To make Greenlight the HTTP home page of BBB, add this on bottom of ///etc/nginx/sites-available/bigbluebutton// : To make Greenlight the HTTP home page of BBB, add this on bottom of ///etc/nginx/sites-available/bigbluebutton// :
Ligne 180: Ligne 182:
  
 Rebot : Rebot :
- +<code bash> 
-  # systemctl restart nginx +systemctl restart nginx 
 +</code>
 ==== Starting Greenlight ==== ==== Starting Greenlight ====
- +<code bash> 
- sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose +sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose 
- chmod +x /usr/local/bin/docker-compose +chmod +x /usr/local/bin/docker-compose 
- cd ~/greenlight +cd ~/greenlight 
- docker run --rm bigbluebutton/greenlight:v2 cat ./docker-compose.yml > docker-compose.yml +docker run --rm bigbluebutton/greenlight:v2 cat ./docker-compose.yml > docker-compose.yml 
- docker-compose up -d+docker-compose up -d 
 +</code>
  
 ==== Stopping Greenlight ==== ==== Stopping Greenlight ====
- +<code bash> 
- docker-compose down+docker-compose down 
 +</code>
  
 ===== Error 1002 for WebRTC ===== ===== Error 1002 for WebRTC =====
Ligne 265: Ligne 269:
          send_timeout 6h;          send_timeout 6h;
  }  }
- +<code bash> 
- bbb-conf --restart +bbb-conf --restart 
 +</code>
 ===== Links ===== ===== Links =====
  
bbb/big_blue_button.1536564427.txt.gz · Dernière modification : 2018/09/10 07:27 de ronan