Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit d030562

Browse files
committed
Check if Java 8 is installed
1 parent 87bb73e commit d030562

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

_posts/2019-02-14-troubleshooting.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,3 +915,26 @@ Next, to add this as a supported browser, append to `settings.yml`
915915
```
916916

917917
save the updated `settings.yml` file, and then restart your BigBlueButton server with `sudo bbb-conf --restart`. Note any browser you add must support WebRTC libraries (not all do), so be sure to check it first with [https://test.webrtc.org/](https://test.webrtc.org/).
918+
919+
## 404 Error when loading the client
920+
921+
BigBlueButton 2.2 requires Java 8 as the default Java. Recently, some Ubuntu 16.04 distributions have switched the default version of Java to Java 9 (or later).
922+
923+
Use `java -version` to check that the default version of `1.8.0`.
924+
925+
```
926+
~/dev$ java -version
927+
openjdk version "1.8.0_242"
928+
OpenJDK Runtime Environment (build 1.8.0_242-8u242-b08-0ubuntu3~16.04-b08)
929+
OpenJDK 64-Bit Server VM (build 25.242-b08, mixed mode)
930+
```
931+
932+
If not, do the following
933+
934+
```
935+
sudo apt-get install openjdk-8-jre
936+
update-alternatives --config java # Choose java-8 as default
937+
```
938+
939+
Run `java -version` and confirm it now shows the default as `1.8.0`, and then restart BigBlueButton with `sudo bbb-conf --restart`
940+

0 commit comments

Comments
 (0)