Install Jitsi on Ubuntu 22.04 / 22.10 Rumi, April 30, 2025 Make sure your system is up-to-date and required packages are installed: Run as root or with sudo: # Retrieve the latest package versions across all repositories sudo apt update # Ensure support for apt repositories served via HTTPS sudo apt install apt-transport-https On Ubuntu systems, Jitsi requires dependencies from Ubuntu’s universe package repository. To ensure this is enabled, run this command: sudo apt-add-repository universe Retrieve the latest package versions across all repositories: sudo apt update Set Domain Name Domain of your server and set up DNS. Decide what domain your server will use. For example, meet.example.org. Set up the Fully Qualified Domain Name (FQDN) (optional) If the machine used to host the Jitsi Meet instance has a FQDN (for example meet.example.org) already set up in DNS, you can set it with the following command: sudo hostnamectl set-hostname meet.example.org Then add the same FQDN in the /etc/hosts file: 127.0.0.1 localhost x.x.x.x meet.example.org note x.x.x.x is your server’s public IP address. Finally on the same machine test that you can ping the FQDN with: ping "$(hostname)" If all worked as expected, you should see: meet.example.org Add the Prosody package repository This will add the Prosody repository so that an up to date Prosody is installed, which is necessary for features including the lobby feature. Ubuntu 22.04 (worked for 22.10 too) sudo curl -sL https://prosody.im/files/prosody-debian-packages.key -o /etc/apt/keyrings/prosody-debian-packages.key echo "deb [signed-by=/etc/apt/keyrings/prosody-debian-packages.key] http://packages.prosody.im/debian $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/prosody-debian-packages.list sudo apt install lua5.2 Add the Jitsi package repository This will add the jitsi repository to your package sources to make the Jitsi Meet packages available. curl -sL https://download.jitsi.org/jitsi-key.gpg.key | sudo sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg' echo "deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/" | sudo tee /etc/apt/sources.list.d/jitsi-stable.list Update all package sources: sudo apt update Setup and configure your firewall The following ports need to be open in your firewall, to allow traffic to the Jitsi Meet server: 80 TCP => For SSL certificate verification / renewal with Let’s Encrypt. Required 443 TCP => For general access to Jitsi Meet. Required 10000 UDP => For General Network Audio/Video Meetings. Required 22 TCP => For Accessing your Server using SSH (change the port accordingly if it’s not 22). Required 3478 UDP => For querying the stun server (coturn, optional, needs config.js change to enable it). 5349 TCP => For fallback network video/audio communications over TCP (when UDP is blocked for example), served by coturn. Required If you are using ufw, you can use the following commands: sudo ufw allow 80/tcp sudo ufw allow 443/tcp sudo ufw allow 10000/udp sudo ufw allow 22/tcp sudo ufw allow 3478/udp sudo ufw allow 5349/tcp sudo ufw enable Check the firewall status with: sudo ufw status verbose Using SSH For more details on using and hardening SSH access, see the corresponding Debian or Ubuntu documentation. Forward ports via your router If you are running Jitsi Meet on a server behind NAT, forward the ports on your router to your server’s IP address. Note: if participants cannot see or hear each other, double check your firewall / NAT rules. TLS Certificate In order to have encrypted communications, you need a TLS certificate. During installation of Jitsi Meet you can choose between different options: The recommended option is to choose Let’s Encrypt Certificate option But if you want to use a different certificate you should get that certificate first and then install jitsi-meet and choose I want to use my own certificate. You could also use the self-signed certificate(Generate a new self-signed certificate) but this is not recommended for the following reasons: Using a self-signed certificate will result in warnings being shown in your users browsers, because they cannot verify your server’s identity. Jitsi Meet mobile apps require a valid certificate signed by a trusted Certificate Authority and will not be able to connect to your server if you choose a self-signed certificate. Install Jitsi Meet Note: The installer will check if Nginx or Apache are present (in that order) and configure a virtual host within the web server it finds to serve Jitsi Meet. If you are already running Nginx on port 443 on the same machine, turnserver configuration will be skipped as it will conflict with your current port 443. # jitsi-meet installation sudo apt install jitsi-meet SSL/TLS certificate generation: You will be asked about SSL/TLS certificate generation. See above for details. Hostname: You will also be asked to enter the hostname of the Jitsi Meet instance. If you have a domain, use the specific domain name, for example: meet.example.org. Alternatively you can enter the IP address of the machine (if it is static or doesn’t change). This hostname will be used for virtualhost configuration inside Jitsi Meet and also, you and your correspondents will be using it to access the web conferences. Access Control Jitsi Meet server: Note: By default, anyone who has access to your Jitsi Meet server will be able to start a conference: if your server is open to the world, anyone can have a chat with anyone else. If you want to limit the ability to start a conference to registered users, follow the instructions to set up a secure domain. Conferences/Rooms: The access control for conferences/rooms is managed in the rooms, you can set a password on the webpage of the specific room after creation. See the User Guide for details: https://jitsi.github.io/handbook/docs/user-guide/user-guide-start-a-jitsi-meeting Advanced configuration If the installation is on a machine behind NAT jitsi-videobridge should configure itself automatically on boot. If three way calls do not work, further configuration of jitsi-videobridge is needed in order for it to be accessible from outside. Provided that all required ports are routed (forwarded) to the machine that it runs on. By default these ports are TCP/443 and UDP/10000. Add a static mapping to the ice4j.harvest.mapping section in /etc/jitsi/videobridge/jvb.conf: ice4j { harvest { mapping { static-mappings = [ { local-address = "<Local.IP.Address>" public-address = "<Public.IP.Address>" } ] } } } See the documentation of ice4j for details. Systemd/Limits: Default deployments will have low values for maximum processes and open files. For greater than 100 participants, change /etc/systemd/system.conf to: DefaultLimitNOFILE=65000 DefaultLimitNPROC=65000 DefaultTasksMax=65000 To check values just run: systemctl show --property DefaultLimitNPROC systemctl show --property DefaultLimitNOFILE systemctl show --property DefaultTasksMax To load the values and check them see below for details. Systemd details To reload the systemd changes on a running system execute sudo systemctl daemon-reload and sudo systemctl restart jitsi-videobridge2. To check the tasks part execute sudo systemctl status jitsi-videobridge2 and you should see Tasks: XX (limit: 65000). To check the files and process part execute cat /proc/`cat /var/run/jitsi-videobridge/jitsi-videobridge.pid`/limits and you should see: Max processes 65000 65000 processes Max open files 65000 65000 files Confirm that your installation is working Launch a web browser (such as Firefox, Chrome or Safari) and enter the hostname or IP address from the previous step into the address bar. If you used a self-signed certificate (as opposed to using Let’s Encrypt), your web browser will ask you to confirm that you trust the certificate. If you are testing from the iOS or Android app, it will probably fail at this point, if you are using a self-signed certificate. You should see a web page prompting you to create a new meeting. Make sure that you can successfully create a meeting and that other participants are able to join the session. If this all worked, then congratulations! You have an operational Jitsi conference service. Ref: Self-Hosting Guide – Debian/Ubuntu server | Jitsi Meet Administrations Configurations (Linux) JitsiUbuntuUbuntu 22.04