檢視docker container內程序資訊及與宿主機上程序的對映關係
阿新 • • 發佈:2019-01-05
1、docker ps 找到對應的容器
2、根據container id 找到容器在宿主機上對映後的程序資訊
docker top 8c900d3fe375(容器id)
就會得到類似下面的資訊,其中PID是容器內程序在宿主機上的pid,ppid是容器內程序在宿主機上的父程序pid
UID PID PPID C STIME TTY TIME CMD root 3096 3077 41 14:59 ? 00:03:11 java -server -XX:NativeMemoryTracking=summary -XX:+UnlockExperimentalVMOptions -XX:+UseZGC -Xms3072m -Xmx3072m -XX:MaxDirectMemorySize=512m -Dcom.sun.management.jmxremote.rmi.port=1099 -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.local.only=false -Djava.rmi.server.hostname=10.13.1.12 -Xlog:gc -jar application.jar
個人微信公眾號:
作者:jiankunking 出處:http://blog.csdn.net/jiankunking