Skip to content
Follow
Ubuntu Linux

How to Install Jitsi Meet on Ubuntu Linux

Richard
Written by
Richard
Oct 10, 2022 Updated Aug 13, 2026 3 min read
How to Install Google Chrome on Ubuntu Linux
How to Install Google Chrome on Ubuntu Linux

Jitsi Meet on Ubuntu Linux is a free, open-source program that lets you host private video calls and meetings on your own server. Running your own server gives you total control over your data and meeting privacy without paying for a commercial service.

You can set up Jitsi Meet on Ubuntu 22.04 or 20.04 in about 15 minutes. People can join your video calls, chat, and share screens straight from a web browser without needing to make an account.

⚡ Quick Answer

Install Jitsi Meet by first updating your system and installing prerequisite packages like wget and curl. Then, add the Jitsi Meet repository using its GPG key and repository file, followed by installing the jitsi-meet package.

Install prerequisite

Before you install Jitsi Meet on Ubuntu, make sure your domain name points to your server’s IP address. Then, update your system’s package list and install important tools like wget and curl, which are needed for the next steps. This prepares your server to download and install the Jitsi Meet software correctly.

First, install the necessary support packages:

🐧Bash / Shell
sudo apt update
sudo apt install wget curl gnupg2 apt-transport-https
⚠️Warning
Next, you must open the ports your server needs to communicate with the outside world. Run these commands to configure your firewall:
🐧Bash / Shell
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw allow 10000:20000/udp
sudo ufw enable

Add Jitsi Meet repository and install

To install Jitsi Meet on Ubuntu, you first need to add its official software source. This is because Jitsi Meet isn’t available in the standard Ubuntu software lists. You’ll download a security key to verify the software and then add the Jitsi Meet repository to your system’s sources.

Download and save the GPG key to the correct keyring folder:

💻Code
curl https://download.jitsi.org/jitsi-key.gpg.key | gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg

Next, add the repository to your system list and point it to your new keyring:

Command Prompt
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 > /dev/null

Now, update your system and install the software:

🐧Bash / Shell
sudo apt update
sudo apt install jitsi-meet
Terminal window showing the installation process of Jitsi Meet on Ubuntu
ubuntu linux install jitsi meet video conferencing
⚠️Warning
During installation, you will be asked for your domain name. Enter the domain you configured in your A-record. You will also be asked about SSL certificates; choosing "Let's Encrypt" is the best option for a production server.

Configure Jitsi Meet

After you install Jitsi Meet on Ubuntu, you need to configure its settings. This involves editing important files like the prosody configuration for your domain name and the main Jitsi Meet JavaScript settings file. These steps ensure Jitsi Meet works correctly with your specific domain and preferences.

🐧Bash / Shell
sudo nano /etc/prosody/conf.avail/yourdomain.com.cfg.lua

You can also edit the main settings file here:

🐧Bash / Shell
sudo nano /etc/jitsi/meet/yourdomain.com-config.js

%%IMG1%%

If your server is behind a NAT or firewall, you may need to define your IP addresses. Open the properties file:

🐧Bash / Shell
sudo nano /etc/jitsi/videobridge/sip-communicator.properties

Add your local and public IP addresses to the file, then save and exit.

Your Jitsi Meet portal is now accessible by typing your domain name into your web browser. This setup allows for easy access to your video conferencing service from any device.

Conclusion

Installing Jitsi Meet on Ubuntu is straightforward thanks to its official repository, offering a flexible way to set up your own secure meeting service. You'll benefit from easy configuration options, community support for any issues, and the reliability of open-source software.

How to install Jitsi server on Ubuntu?

List this is how you add a repository to your Ubuntu. Server. So let's press enter.

Do you need to download Jitsi to use it?

No logging in or app installs necessary as Jitsi works like a charm right from your browser. If you dig apps more, try the Jitsi app (on iOS and Android). Start or join meetings sans account. Same no-fuss policy — no signing up, no headaches.

How to install jitsi meet on Linux Mint?

And then type flatpack install flatub or Jitsy dot. Jitsy-me Jity bash meat enter Y for yes. And then enter Y for. Yes.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install Ubuntu Linux
Ubuntu Linux How to Install Ubuntu Linux
How to Revoke Let's Encrypt Certificates on Ubuntu Linux
Ubuntu Linux How to Revoke Let's Encrypt Certificates on Ubuntu Linux
How to Get Free Wildcard SSL Certificates
Ubuntu Linux How to Get Free Wildcard SSL Certificates
How to Setup Let's Encrypt with Apache on Ubuntu Linux
Ubuntu Linux How to Setup Let's Encrypt with Apache on Ubuntu Linux

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *