> I have a multi-instance setup. > By doing "ps -ef", as expected, I see a lot of "master" processes. > Is there a way to see which master is related to which instance at a glance?
Fuser or lsof says which process listens on a specific port. Pstree or ps shows the parent of it. (At least on Linux.) Gabor