Hallo Holger
aktuell gibt es einen Bug das wenn man den BBB Server neustartet
bekommt man einen 404 not found error das liegt an einem fehler in der
/greenligh/ docker-compose.yml
dort steht bei
db:
image: postgres:9.5
restart: on-failure <-- das muss ausgetauscht werden gegen unless-stopped
ports:
- 127.0.0.1:5432:5432
danach unter dem verzeichnis greenlight
docker-compose down
und
docker-combose up -d ausführen damit der docker container bei jedem start ausgeführt wird
wenn dein Server beim Installieren von big blue button einen fehler liefert das er nicht auf freeswitch zugreifen kann muss man folgendes tun:
FreeSWITCH fails to bind to port 8021Anchor link for: freeswitch fails to bind to port 8021
FreeSWITCH supports both IPV4 and IPV6. However, if your server does not support IPV6, FreeSWITCH will be unable to bind to port 8021. If you run sudo bbb-conf --check and see the following error
# Error: Found text in freeswitch.log:
#
# Thread ended for mod_event_socket
#
# FreeSWITCH may not be responding to requests on port 8021 (event socket layer)
# and users may have errors joining audio.
#
it might be that your server has IPV6 disabled (or does not support it). You can check this by running the following command
$ sudo ip addr | grep inet6
inet6 ::1/128 scope host
...
If you do not see the line inet6 ::1/128 scope host, then your server has IPV6 disabled. In this case, we need to disable FreeSWITCH’s support for IPV6. First, edit /opt/freeswitch/etc/freeswitch/autoload_configs/event_socket.conf.xml and change the line
<param name="listen-ip" value="::"/>
to
<param name="listen-ip" value="127.0.0.1"/>
This tells FreeSWITCH that instead of binding port 8021 to the local IPV6 address, bind to the IPV4 address 127.0.0.1. Next, execute the following two commands
$ sudo mv /opt/freeswitch/etc/freeswitch/sip_profiles/internal-ipv6.xml /opt/freeswitch/etc/freeswitch/sip_profiles/internal-ipv6.xml_
$ sudo mv /opt/freeswitch/etc/freeswitch/sip_profiles/external-ipv6.xml /opt/freeswitch/etc/freeswitch/sip_profiles/external-ipv6.xml_
and then restart BigBlueButton with the commands
$ sudo bbb-conf --clean
$ sudo bbb-conf --check
außerdem ist in der Standardeinstellung öffentliches registrieren aktiviert um das zu deaktivieren benötigt man einen admin den legt man sich mit folgendem befehlt an:
docker exec greenlight-v2 bundle exec rake user:create[„admin-Schule","administrator@schule.de“,„Passwort“,„admin“]
mit dem kann man sich dann auf dem server anmelden um dann die registrierungmethode zu ändern

teilnahme durch einladung ist nicht notwendig darum kümmert sich das moodle plugin.
das secret und die url erhält man für moodle übrigens über den befehehl
bbb-conf --secret
aktuell schraube ich auch noch am bbb server rum wenn ich weitere fehler finde werde ich sie hier posten
Lg Pascal
P.S. ich habe für 5€ im monat bei Contabo einen VPS Server gemietet darauf läuft Big Blue Button sehr gut