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

     

上一篇:无线网络实验七


下一篇:Mybatis-plus实现多表查询