I’m running Podman in a OpenSUSE Leap 15.6 machine that is located on my trusted network (only one nic).
The machine above is located behind another OpenSUSE Leap 15.6 machine that serves as a firewall with two interfaces, trusted and external.
Now, I’ve got the Podman Pod and Wordpress + Mariadb running on the machine on the trusted network. Communication in Wordpress is however very slow if it works at all and I can’t figure out what might be wrong?
So this is an effort to find out if anyone have any ideas on how to fault-find?
Any tips on how to locate what’s wrong is greatly appreciated!
Do you mean that the site loads slowly, or something else?
Can you quantify “very slow”?
If it’s browser communication to the instance, I might be inclined to start with the tools built into the browser - in Chrome, for example, the DevTools panel (F12), starting with the network tab to see what load times look like. That also will help you see if there are network errors being reported that might provide some insight into what’s going on.
Hi,
Just to make sure there is no problems with connection (port forwarding, reverse proxy, etc.) I would temporarily stop your existing web-server and run the simplest website as below. Change the 8080 port for whatever port you use. You should see the simple website “It works!”.
podman run -dt -p 8080:80/tcp docker.io/library/httpd