Custom networks stopped working, unable to get containers to communicate on Podman 5.3.1 with Pasta #25487
Replies: 2 comments
-
That seems totally wrong, did you configure a custom runroot anywhere? The runroot should be on tmpfs or must be deleted on each boot before podman is run. Generally the runroot default to /run/user/$UID/containers when you have properly logged in and have a valid systemd user session, i.e. not using Note the podman db caches that path after first use so you need to wipe everything clean (podman system reset) and then run podman info again for a proper user session. Then it should have a valid path. |
Beta Was this translation helpful? Give feedback.
-
Yeah that was it. I backed up my volumes with Ran
Rebooted and now my quadlets work again. Restoring my volumes was as simple as using |
Beta Was this translation helpful? Give feedback.
-
I'm on Fedora Server 40 and after a reboot, all my quadlets stopped working. I was previously on podman 5.2, and after reboot I'm on 5.3.1. Quadlets only work on pasta network or no network specified in the quadlet. Here's my simplest quadlet:
Restarting my quadlets shows an udp listener error at port 53:
Creating a new network
podman network create my_network
does not resolve this error.podman network inspect app_net
sudo netstat -tuln | grep :53
I've tried
podman network prune
systemctl restart podman
systemctl --user daemon-reload
sudo systemctl enable podman.socket
sudo systemctl start podman.socket
podman network rm app_net
podman network create app_net
podman network create app_net --subnet 10.89.3.0/24 --gateway 10.89.3.1 --ip-range 10.89.3.0/24
So now I'm trying to use pasta since that is the only network any of my quadlets will even start with. The problem now is nginx proxy manager can't access any of the services.
I've tried adding the map-gw option which worked, and now doesn't, simply between two containers. I can't put them in a pod together because both containers use port 3000 internally.
nginx-proxy-manager.container
Accessing the encrypted url for silverbullet results in a bad gateway error.
podman info
I'm completely dead in the water here. Can't get anything working.
Beta Was this translation helpful? Give feedback.
All reactions