Hello everyone,
I’m pretty new around here so feel free to correct me if I’m mistaken. By the way I’m sorry for the links, I had to replace the . by @ since the forum doesn’t allow me to post several links, a very good idea to create a thorough post …
A sed to help you out
echo "dumb link" | sed 's/@/./g'
I’m trying to install jitsi-meet on and Ubuntu 18.04 LTS following the guide.
My stack is:
- HAProxy on port 80/443 (which redirects other softwares being irrelevant here)
- NGinx (localhost) on port 8443 for jitsi-meet
I opened up ports UDP 10000 and also TCP 4443 which seems important for Jitsi Video Bridge.
I have java 8
# java -version
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-8u212-b03-0ubuntu1.18.04.1-b03)
OpenJDK 64-Bit Server VM (build 25.212-b03, mixed mode)
The installation process went fine, I use my own Let’s Encrypt certificate which is loaded in HAProxy, NGinx (I think it’s useless here) and in Jitsi too.
The problem is that when two persons or more connect to a session, an error shows up for each session Unable to access your microphone.
Check the log, I have this:
JVB 2019-07-16 10:14:59.728 GRAVE: [134797] util.UtilActivator.uncaughtException().122 An uncaught exception occurred in thread=Thread[org.jitsi.videobridge.SctpConnection-pool-12-thread-8,5,main] and message was: Could not initialize class org.jitsi.sctp4j.Sctp
java.lang.NoClassDefFoundError: Could not initialize class org.jitsi.sctp4j.Sctp
at org.jitsi.videobridge.SctpConnection.lambda$maybeStartStream$1(SctpConnection.java:537)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
JVB 2019-07-16 10:15:00.028 PRÉCIS: [129] org.jitsi.videobridge.xmpp.ComponentImpl.processIQ() (serving component 'JitsiVideobridge') Processing IQ (packetId ebWaF-25520): <iq id="ebWaF-25520" type="result" to="xxx.xxx.xxx" from="xxx.xxx.xxx"/>
So I’ve looked around and found a few posts talking about it:
- community@jitsi@org/t/jitsi-users-java-lang-noclassdeffounderror-could-not-initialize-class-org-jitsi-sctp4j-sctp/9695
- community@jitsi@org/t/jitsi-users-java-lang-noclassdeffounderror-could-not-initialize-class-org-jitsi-sctp4j-sctp/9691
Most of them are really outdated and don’t seem to help me on the matter.
I also found out related topics on the list but it seems down lists@jitsi@org/pipermail/users/2015-September/010068.html I’m guessing the list has been dropped.
I read the Advanced configuration though I don’t think these parameters matter in my case:
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=<Local.IP.Address>
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=<Public.IP.Address>
Has anyone an idea on how to fix it ?
Thanks.