Whether you’re setting up Jellyfin for the first time or just trying to connect a new device to your media server, you’ll need to know the server address. This tutorial walks you through finding your Jellyfin server address on both Windows and Ubuntu, using both the Graphical User Interface (GUI) and the Command Line (CLI).
🔍 What Is the Jellyfin Server Address?
Your Jellyfin server address typically looks like:
http://<IP_ADDRESS>:8096
Or, if you’re using HTTPS (which Jellyfin can support with SSL), it may look like:
https://<IP_ADDRESS>:8920
You can use this address in your browser or the Jellyfin app to connect to your server.
🪟 Windows: Finding the Server Address
✅ Method 1: GUI (Graphical Interface)
- Open Jellyfin Server:
- Launch the Jellyfin tray icon (usually in the system tray near the clock).
- Right-click the icon and select “Open Jellyfin” or “Dashboard”.
- Find the Address:
- Your default browser should open automatically.
- Look at the URL in the address bar. It will look like:
http://localhost:8096
- Replace
localhost
with your local IP address to use it from other devices.
- Find Your Local IP (GUI):
- Press
Win + R
, typencpa.cpl
, and press Enter. - Double-click your active network adapter (Wi-Fi or Ethernet).
- Click Details… and look for the IPv4 Address.
IPv4 Address: 192.168.1.100
Final server address:http://192.168.1.100:8096
- Press
💻 Method 2: Command Line
- Press
Win + R
, typecmd
, and hit Enter. - Type the following and press Enter:
ipconfig
- Look for the
IPv4 Address
under your active network adapter.
Example:
IPv4 Address. . . . . . . . . . . : 192.168.1.100
Then access:
http://192.168.1.100:8096
🐧 Ubuntu: Finding the Server Address
✅ Method 1: GUI (Settings)
- Check IP Address:
- Open Settings > Network.
- Click the settings icon (gear) next to your active network.
- Go to the Details tab.
- Look for IPv4 Address (e.g.,
192.168.1.101
).
- Access Jellyfin:
- In your browser, go to:
http://192.168.1.101:8096
- In your browser, go to:
You can also access
http://localhost:8096
directly on the Ubuntu machine itself.
💻 Method 2: Command Line (Terminal)
- Open your Terminal (
Ctrl + Alt + T
). - Run:
hostname -I
This shows your local IP address. Example output:192.168.1.101
- Access your Jellyfin server from another device:
http://192.168.1.101:8096
If you’re running Jellyfin with HTTPS and a certificate, the port will be 8920
instead:
https://192.168.1.101:8920
🛠️ Troubleshooting
- Can’t access Jellyfin from another device?
- Make sure your firewall allows incoming connections on port
8096
. - On Ubuntu, check:
sudo ufw allow 8096
- On Windows, allow Jellyfin through Windows Defender Firewall.
- Make sure your firewall allows incoming connections on port
- Still using
localhost
? That only works on the same machine. Replace it with the IPv4 address for remote devices.
✅ Final Thoughts
Finding your Jellyfin server address is easy once you know where to look. Whether you’re using Windows or Ubuntu, GUI or terminal, you now have everything you need to locate your server and start streaming your media.
📺 Happy streaming!