其他分享
首页 > 其他分享> > ncenter使用

ncenter使用

作者:互联网

由于有时候,容器中工具缺少难以定位,可以尝试使用nsenter

step1: 找到容器的pid

          docker inspect container_id | grep Pid

step2:  nsenter -t pid -m -n -p -i -u 

     -m ,如果带上,表示使用pid 的mnt,即:/proc/pid/ns/mnt

          如果不带上,就是当前的ns mnt

     -n netnamespaces

     -p pidnamespaces

     -i ipcnamespaces

     -u uts namespaces

     

标签:容器,ncenter,pid,mnt,nsenter,使用,带上,ns
来源: https://www.cnblogs.com/liuxingxing/p/14318823.html