ILIAS-7-Install-Tutorial for Ubuntu 20.04
Configure a Server
Configure BBB-Screen
- The main configfile can be found here:
sudo nano /usr/share/meteor/bundle/programs/server/assets/app/config/settings.yml- For example if you want to deactivate videos do this in line 116: enableVideo: false
- Recommendation line 6:Â showParticipantsOnLogin: true
- Restart BBB:
bbb-conf --restart
Disable shared Notes by default
nano /usr/share/bbb-web/WEB-INF/classes/bigbluebutton.propertieslockSettingsDisableNote=truebbb-conf --restart
Create a Swap File
A swap file is missing by default. Your server can become unreachable if a swap is missing. So here we go:
- https://devanswers.co/guide-creating-swap-space-ubuntu-16-04/
- Look if there is any swap:
swapon --show - Choose a swapsize (half of RAM) and run:
sudo fallocate -l 8G /swapfile - Check if file was created:
ls -lh /swapfile sudo chmod 600 /swapfilesudo mkswap /swapfilesudo swapon /swapfilerebootsudo swapon --showecho '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstabsudo sysctl vm.swappiness=10sudo sysctl vm.vfs_cache_pressure=50sudo nano /etc/sysctl.conf- Add these two lines at the bottom:
1 | vm.swappiness=10 |
Configure Greenlight
cd ~/greenlightnano .env- ...
- Create Admin-Account:
docker exec greenlight-v2 bundle exec rake admin:create
- Change admin credentials:
docker exec greenlight-v2 bundle exec rake user:create["name","email","password","admin"]
reboot
- Exit with STRG + x
nano chart.html- Paste the following code in: