![]() |
SOLVED: Cannot Access Web UI and App - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Networking & Access (https://forum.jellyfin.org/f-networking-access) +---- Thread: SOLVED: Cannot Access Web UI and App (/t-solved-cannot-access-web-ui-and-app) |
RE: Cannot Access Web UI and App - G_O_B_L_N - 2024-10-14 (2024-10-14, 04:43 PM)TheDreadPirate Wrote: It will not. Starting Jellyfin with simply "jellyfin" excludes a lot of additional parameters that the service uses when it starts up. ufw: Code: Status: inactive with regards to the /etc/jellyfin/network.xml, the directory seems to be missing. could this be due to issues with my reinstall attempt? RE: Cannot Access Web UI and App - TheDreadPirate - 2024-10-14 That directory should exist IF you installed Jellyfin from our repo. How did you install Jellyfin? Also, you will need to enable UFW and add a rule. When UFW is disabled that does not mean the firewall is disabled. UFW is an easier to use command line tool to manage firewall rules. It is not the firewall itself. Code: sudo ufw enable Those would be the commands to allow access on port 8096 when we get Jellyfin squared away. RE: Cannot Access Web UI and App - G_O_B_L_N - 2024-10-14 (2024-10-14, 05:14 PM)TheDreadPirate Wrote: That directory should exist IF you installed Jellyfin from our repo. How did you install Jellyfin? method below: Code: curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash RE: Cannot Access Web UI and App - TheDreadPirate - 2024-10-14 Is Jellyfin running? sudo systemctl status jellyfin What is the output of this command? Code: sudo journalctl -u jellyfin -n 200 --no-pager RE: Cannot Access Web UI and App - G_O_B_L_N - 2024-10-14 (2024-10-14, 05:20 PM)TheDreadPirate Wrote: Is Jellyfin running? Paste below for the journalctl: https://pastebin.com/BphF2yh1 status wise, jellyfin is running Code: ● jellyfin.service - Jellyfin Media Server RE: Cannot Access Web UI and App - TheDreadPirate - 2024-10-14 Code: Oct 14 15:53:44 colin jellyfin[842]: System.UnauthorizedAccessException: Access to the path '/var/cache/jellyfin' is denied. Run this command to ensure jellyfin has ownership of everything it needs to control. Code: sudo chown -R jellyfin: /etc/jellyfin /var/cache/jellyfin /var/lib/jellyfin RE: Cannot Access Web UI and App - G_O_B_L_N - 2024-10-14 (2024-10-14, 05:30 PM)TheDreadPirate Wrote: been able to grant access to lib but not the other two as they are not present (below): PHP Code: sudo chown -R jellyfin: /etc/jellyfin /var/cache/jellyfin /var/lib/jellyfin i believe this maybe due to removing them after purging jellyfin to do a full reinstall but i guess theyb weren't rebuilt? RE: Cannot Access Web UI and App - TheDreadPirate - 2024-10-14 Let's purge and start over. Since /var/lib/jellyfin doesn't exist, that means you have no data to lose, correct? Code: sudo apt purge jellyfin* RE: Cannot Access Web UI and App - G_O_B_L_N - 2024-10-14 (2024-10-14, 05:43 PM)TheDreadPirate Wrote: Let's purge and start over. Since /var/lib/jellyfin doesn't exist, that means you have no data to lose, correct? failed to install due to access to /etc/jellyfin Code: chown: cannot access '/etc/jellyfin' : No such file or directory RE: Cannot Access Web UI and App - TheDreadPirate - 2024-10-14 What is the output of these commands? Code: df -h |