Page 1 of 1

Trouble starting docker image

Posted: January 26th, 2024, 4:19 pm
by ritmo2k
I am trying to run 4.2.1 from the linuxserver/sabnzbd container using podman in Alma Linux.

When I start the container I get the following error:

Fatal error:
Unable to bind to port 8080 on localhost. Some other software uses the port or SABnzbd is already running.

I don't have anything running on port 8080, I am certain as I have verified with lsof and netstat. Selinux is also disabled.

Any ideas about what may be the problem?

Re: Trouble starting docker image

Posted: January 26th, 2024, 4:35 pm
by sander
choose a different outside port in your sabnzbd docker config

Re: Trouble starting docker image

Posted: January 26th, 2024, 4:40 pm
by ritmo2k
Actually, further research into this reveals I have the same issue as github linuxserver/docker-sabnzbd #82

ipv6 is disabled on my host (and that won't change).

It looks like there is a facility to alter the containers runtime behavior that I am looking into now.

Re: Trouble starting docker image

Posted: January 26th, 2024, 6:46 pm
by ritmo2k
I am able to modify the container startup to pass 127.0.0.1:8080 to the --server parameter (I cannot use 0.0.0.0 with any port).

I have started the container and published the port, yet using curl from the container host, there is no response?

Does anyone have any suggestions?