Jellyfin Forum
Unable to Access Web Client on Fresh Install - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Unable to Access Web Client on Fresh Install (/t-unable-to-access-web-client-on-fresh-install)

Pages: 1 2


RE: Unable to Access Web Client on Fresh Install - TheDreadPirate - 2024-10-29

If UFW is inactive, you have to enabled it.

Code:
sudo ufw enable

Then the rules you add become active. But that wouldn't prevent Jellyfin from starting.

Share the output of this command.

Code:
sudo apt list --installed | grep jellyfin

Then share the output of this command via pastebin.com.

Code:
sudo journalctl -u jellyfin -n 200 --no-pager



RE: Unable to Access Web Client on Fresh Install - Pollo - 2024-10-29

(2024-10-29, 01:23 PM)TheDreadPirate Wrote: If UFW is inactive, you have to enabled it.

Code:
sudo ufw enable

Then the rules you add become active.  But that wouldn't prevent Jellyfin from starting.

Share the output of this command.

Code:
sudo apt list --installed | grep jellyfin

Then share the output of this command via pastebin.com.

Code:
sudo journalctl -u jellyfin -n 200 --no-pager

Here is the result of the first command:

Code:
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

jellyfin-ffmpeg7/unknown,now 7.0.2-5-noble amd64 [installed,automatic]
jellyfin-server/unknown,now 10.10.0+ubu2404 amd64 [installed,automatic]
jellyfin-web/unknown,now 10.10.0+ubu2404 all [installed,automatic]
jellyfin/unknown,now 10.10.0+ubu2404 all [installed]

Here is the pastebin of the second command: https://pastebin.com/zvwB0fXN


RE: Unable to Access Web Client on Fresh Install - TheDreadPirate - 2024-10-29

Code:
sudo systemctl stop jellyfin
sudo chown -R jellyfin: /var/lib/jellyfin /etc/jellyfin /var/cache/jellyfin /usr/share/jellyfin
sudo systemctl start jellyfin



RE: Unable to Access Web Client on Fresh Install - Pollo - 2024-10-29

It worked! I'm not the best when it comes to managing permissions, but those commands will help me for future updates. Thank you so much!