nsenter工具 通过docker pid进入到docker容器里
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nsenter工具 通过docker pid进入到docker容器里相关的知识,希望对你有一定的参考价值。
pid 可以是dockerID 也可以是docker 里面起的进程ID
##安装
wget https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.32/util-linux-2.32.tar.gz
tar -xzvf util-linux-2.32.tar.gz
cd util-linux-2.32/
./configure --without-ncurses
make nsenter
cp nsenter /usr/local/bin
##为了连接到容器,我们还需要找到容器的第一个进程的PID,可以通过下面的命令获取
PID=$(docker inspect --format "{{ .State.Pid}}" <container id>)
top
nsenter --target PID --mount --uts --ipc --net --pid
##进入到docker之后
env ##查看环境变量信息 获取到docker 的hostname 这是docker 编号
docker inspect 容器编号 ##查看容器详细信息
以上是关于nsenter工具 通过docker pid进入到docker容器里的主要内容,如果未能解决你的问题,请参考以下文章