本文介绍了泊坞窗和主机之间的PID映射的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
docker名称空间与Host名称空间有何不同?如何在这两者之间映射pid?谁能给我一个想法,以帮助简化使用源代码在主机n docker之间映射pid的简便方法?
How docker namespace is different from Host namespace and how the pid can be mapped between these two? Can anyone give me an idea that helps to make easy way of mapping pid's between host n docker using source code?
推荐答案
您可以在/proc/PID/status
文件中找到映射.它包含如下一行:
You can find the mapping in /proc/PID/status
file. It contains a line like:
NSpid: 16950 24
这意味着主机上的16950
位于容器内的24
.
Which means that 16950
on the host is 24
inside the container.
这篇关于泊坞窗和主机之间的PID映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!