博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何进入到Docker容器内部
阅读量:5223 次
发布时间:2019-06-14

本文共 2674 字,大约阅读时间需要 8 分钟。

启动容器后,对应的服务(例如tomcat启动)也通过dockerfile文件命令运行起来了,这个时候如何进行容器内部观察容器的运行状态。

1. attach 这个命令在创建一个守护态的Docker容器,然后使用docker attach命令进入该容器。

2.docker exec 这个命令比较方便,可以在容器运行别的服务时连接上该容器

进入容器命令

sudo docker exec -it containerID /bin/bash

实例操作如下

进入,ping宿主机IP地址:

[root@mysqlserver ~]# sudo docker exec -it 4be093b46d22  /bin/bash [root@4be093b46d22 /]# ping 10.10.11.218PING 10.10.11.218 (10.10.11.218) 56(84) bytes of data.64 bytes from 10.10.11.218: icmp_seq=1 ttl=64 time=0.037 ms64 bytes from 10.10.11.218: icmp_seq=2 ttl=64 time=0.021 ms64 bytes from 10.10.11.218: icmp_seq=3 ttl=64 time=0.014 ms64 bytes from 10.10.11.218: icmp_seq=4 ttl=64 time=0.020 ms64 bytes from 10.10.11.218: icmp_seq=5 ttl=64 time=0.020 ms64 bytes from 10.10.11.218: icmp_seq=6 ttl=64 time=0.017 ms64 bytes from 10.10.11.218: icmp_seq=7 ttl=64 time=0.017 ms64 bytes from 10.10.11.218: icmp_seq=8 ttl=64 time=0.018 ms64 bytes from 10.10.11.218: icmp_seq=9 ttl=64 time=0.015 ms64 bytes from 10.10.11.218: icmp_seq=10 ttl=64 time=0.014 ms64 bytes from 10.10.11.218: icmp_seq=11 ttl=64 time=0.022 ms^Z[1]+  Stopped                 ping 10.10.11.218[root@4be093b46d22 /]# lsanaconda-post.log  bin    dev  etc  home    lib  lib64  lost+found    media  mnt  opt  proc  root  run  sbin    srv  sys  tmp  usr  var[root@4be093b46d22 /]# cd /usr/local[root@4be093b46d22 local]# lsapache-tomcat-8.5.16  bin  etc    games  include    jdk1.8.0_121  lib  lib64  libexec  sbin  share    src[root@4be093b46d22 local]#
 

ping外网地址:

[root@4be093b46d22 local]# ping www.baidu.comPING www.a.shifen.com (115.239.211.112) 56(84) bytes of data.64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=1 ttl=51 time=7.85 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=2 ttl=51 time=7.95 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=3 ttl=51 time=6.98 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=4 ttl=51 time=7.52 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=5 ttl=51 time=7.62 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=6 ttl=51 time=7.40 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=7 ttl=51 time=7.90 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=8 ttl=51 time=7.99 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=9 ttl=51 time=7.73 ms64 bytes from 115.239.211.112 (115.239.211.112): icmp_seq=10 ttl=51 time=8.00 ms^Z[2]+  Stopped                 ping www.baidu.com[root@4be093b46d22 local]#

Docker新认知

Docker容器是一个系统级别的服务,拥有自己的IP和系统目录结构,所以我们完全可以认为一个运行的容器就是一个运行的虚拟机。

判断网络通不通:我们可以在Docker外部的宿主机和Docker容器之间进行互ping测试。

 

进入Docker容器比较常见的几种做法

  • 使用docker attach
  • 使用SSH
  • 使用nsenter
  • 使用exec

转载于:https://www.cnblogs.com/boonya/p/7376489.html

你可能感兴趣的文章
一题多解 之 Bat
查看>>
Java 内部类
查看>>
{面试题7: 使用两个队列实现一个栈}
查看>>
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
jmeter系列二(jmeter engine相关)
查看>>
一份超全超详细的 ADB 用法大全
查看>>
WebView 调试
查看>>
IB使用
查看>>
Apache Common-IO 使用
查看>>
apidoc
查看>>
关于 ++x 和 x++ 比较难的一个例子
查看>>
第三次作业 105032014021
查看>>
记录一些容易忘记的属性 -- UILabel
查看>>
STL之map UVa156
查看>>
再谈Vmware NAT的配置和路由流程
查看>>
javaScript数组去重方法汇总
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>