Jellyfin Forum
No website shows up - 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: No website shows up (/t-no-website-shows-up)



No website shows up - chengscott - 2023-07-26

I tried to create a jellyfin container using podman:

Code:
podman run --replace -d --name jellyfin -p 127.0.0.1:8096:8096 -v $PWD/config:/config -v $PWD/cache:/cache -v /etc/resolv.conf:/etc/resolv.conf:ro docker.io/jellyfin/jellyfin

Everything looks good after launching:

Code:
$ podman ps
CONTAINER ID  IMAGE                                    COMMAND    CREATED        STATUS                    PORTS                                            NAMES
2a96fe3e97e7  docker.io/jellyfin/jellyfin:latest                  35 seconds ago  Up 35 seconds (healthy)  127.0.0.1:8096->8096/tcp                          jellyfin
$ podman logs -f jellyfin
https://pastebin.com/xRdAqiCG


But, I cannot see the website neither outside nor inside the container:
Code:
$ curl http://127.0.0.1:8096
$ podman exec -it jellyfin bash
root@2a96fe3e97e7:/# curl http://127.0.0.1:8096
root@2a96fe3e97e7:/#



RE: No website shows up - TheDreadPirate - 2023-07-26

Try this

Code:
-p 0.0.0.0:8096:8096

instead of 127.0.0.1.


RE: No website shows up - chengscott - 2023-07-26

(2023-07-26, 06:57 PM)TheDreadPirate Wrote: Try this

Code:
-p 0.0.0.0:8096:8096

instead of 127.0.0.1.

I just tried it and it's the same.
The website is not even accessible inside container. I am not sure if jellyfin has successfully started the website based on the log.


RE: No website shows up - TheDreadPirate - 2023-07-26

From this doc

https://jellyfin.org/docs/general/installation/container/#podman

Code:
--publish 8096:8096/tcp

I am assuming -p is the same as --publish? Remove the IP: and add /tcp?


RE: No website shows up - chengscott - 2023-07-26

The command are equivalent (we can also see that in podman ps)

The problem is that I can not even access the website inside the container and I don't think the problem is related to exposing the port to host.

https://docs.podman.io/en/latest/markdown/podman-run.1.html#publish-p-ip-hostport-containerport-protocol

(2023-07-26, 07:18 PM)TheDreadPirate Wrote: From this doc

https://jellyfin.org/docs/general/installation/container/#podman

Code:
--publish 8096:8096/tcp

I am assuming -p is the same as --publish?  Remove the IP: and add /tcp?



RE: No website shows up - TheDreadPirate - 2023-07-26

From within the container, are you able to tell if there are any jellyfin processes?

I also see these two parameters in the doc that I don't see an equivalent in yours.

Code:
--user $(id -u):$(id -g) \
--userns keep-id \

Not sure how important they are but the docker guide also specifies the same thing.

Code:
--user uid:gid \