Alap Ubuntu telepítés #
Ubuntu 20.04 LTS default install angolul
BigBlueButton telepítés #
wget -qO- https://ubuntu.bigbluebutton.org/bbb-install-2.5.sh | bash -s — -v focal-250 -s bbb.example.com -e notice@example.com -g
Greenlight admin létrehozása #
docker exec greenlight-v2 bundle exec rake admin:create
BBB statisztika telepítés
bbbmon: #
apt install python3-pip
pip3 install bbbmon –upgrade
bbbmon meetings -u
bbb-usage: #
apt install mysql-server php-fpm php-mysqli php-xml php-curl
1. Clone Github Repository to your local machine
Let’s assume /var/www/html/ is the root directory of your webserver:
cd /var/www/html/ && git clone https://github.com/glu000/bbb-usage
2. Create mySQL database
Create a new database bbb-usage and grant access to a user
adatbázis létrehozás:
mysql -u root -p
create database bbbusage;
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;
3. Adopt bbb-usage configuration
Copy conf-example.php to conf.php and adjust settings
4. Add crontab job
It’s recommended to collect data every 5 minutes:
*/5 * * * * root cd /var/www/html/bbb-usage && /usr/bin/php /var/www/html/bbb-usage/collect.php
/etc/nginx/sites-available/default:
index index.php index.html index.htm index.nginx-debian.html;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
# With php7.0-cgi alone:
fastcgi_pass 127.0.0.1:9000;
# With php7.0-fpm:
#fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
location ~ /\.ht {
deny all;
}
/etc/php/7.4/fpm/php.ini:
cgi.fix_pathinfo=0
/etc/php/7.4/fpm/pool.d/www.conf:
;listen = /var/run/php5-fpm.sock
listen = 127.0.0.1:9000
/etc/init.d/php7.4-fpm reload
/etc/init.d/nginx reload