-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Networking issues (connection reset
) with podman
(and discrepancies podman
/docker
)
#9083
Comments
Root or rootless podman? |
|
Edited the issue to reflect trouble shooting guide and version question revisit. |
Can you, with no other containers running, try the first part of your reproducer (everything up to and including |
Here's what I came up with:
Do I interpret this correctly as the |
That's a user and mount namespace - I'm looking for the network namespace. I would expect the user namespace to be persisted by our pause process. An alternative would be |
@r-cheologist ping, have you had a chance to try @mheon's suggestions? |
Sorry for the delay.
(after stopping the container) gives NO output. Does it matter in this context that I'm on
produces:
There were several updates over the last days (in the context of my Arch system), but the problem persists as described above. |
Alright. Exited indicates that we successfully tore down the network stack, so that idea's a bust. Can you try adding the |
Adding |
Can you confirm that this is only on the second invocation of Podman, as it was before? Or is this for every invocation of Podman now? @AkihiroSuda PTAL |
Yes I followed exactly my recipe above and end up with a running non-localhost:8787 accessible container from the new image. |
Any further follow up I could provide? |
A friendly reminder that this issue had no activity for 30 days. |
@AkihiroSuda @mheon What is the scoop on this one? |
I suppose this could be related to the Conmon issue we've been tracking where ports are held open - testing with newest released Conmon could help. If it's not that, it's more on the slirp side of the fence from what I can see. |
podman version 3.0.1 |
That's the Podman version - Conmon is a separate utility binary we ship. The versions of the two are independent. |
A friendly reminder that this issue had no activity for 30 days. |
This is not a Podman issue, so I am going to close. |
As of the following versions I can report the issue as resolved (on Manjaro testing):
|
I'm seeing this on AlmaLinux 9.2 and Rocky 8.7. I've tried
|
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
Networking issues (
connection reset
) withpodman
(and discrepanciespodman
/docker
)Steps to reproduce the issue:
podman pull rocker/tidyverse
podman run -d -p 127.0.0.1:8787:8787 -v /tmp:/tmp -e ROOT=TRUE -e DISABLE_AUTH=TRUE --tz=local rocker/tidyverse
Access
rstudio
using a browser @localhost:8787
, runtouch ~/test.txt
on the console;podman stop -l
(note printed hash)podman commit <HASH> local_test
podman rm <HASH>
podman run -d -p 127.0.0.1:8787:8787 -v /tmp:/tmp -e ROOT=TRUE -e DISABLE_AUTH=TRUE --tz=local local_test
Try accessing
localhost:8787
Describe the results you received:
I can't connect to the
localhost:8787
port - connection reset.What is furthermore strange is that a) pushing the image to the registry of a private gitlab instance, b) pulling it using
docker
and running it withdocker run -d -p 127.0.0.1:8787:8787 -v /tmp:/tmp -e ROOT=TRUE -e disable_auth=TRUE local_test
works just fine (deleting the local image inpodman
and pulling it from the same registry makes no difference with respect to the connection reset phenotype).Describe the results you expected:
Network access as to the original container as well as phenocopying of
docker
.Additional information you deem important (e.g. issue happens only occasionally):
Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide?
I appear to be running the latest release. 3.0 seems to be bringing in some networking related fixes. Will that take care of my issues?
The issue appears uncovered in the trouble shooting guide.
Additional environment details (AWS, VirtualBox, physical, etc.):
NA.
The text was updated successfully, but these errors were encountered: