博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker process tree
阅读量:6303 次
发布时间:2019-06-22

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

使用sshd这个镜像来简单的介绍一下container和宿主机的进程树结构 : 
首先使用前面我们创建的sshd镜像, 启动一个container, 
[root@localhost ~]# docker psCONTAINER ID        IMAGE                COMMAND               CREATED             STATUS              PORTS               NAMES74e5b4373374        digoal/sshd:latest   "/usr/sbin/sshd -D"   29 minutes ago      Up 29 minutes       22/tcp              digoal
container对应的IP和PID如下 : 
[root@localhost ~]# docker inspect digoal        "IPAddress": "172.17.0.22",        "Pid": 8378,
登录到container, 并启动一个postgresql server, 便于查看进程结构.
[root@localhost ~]# ssh 172.17.0.22root@172.17.0.22's password: Last login: Thu Nov 27 13:32:37 2014 from 172.17.42.1
在container内部, pid=1的进程是docker 的entrypoint或cmd执行的命令, 例如sshd的镜像执行的是sshd -D.
[root@74e5b4373374 ~]# ps -ewf|grep 1root         1     0  0 13:32 ?        00:00:00 /usr/sbin/sshd -D
在container内启动的其他进程是继承自PID1的, 即sshd -D进程.
postmaster进程继承自sshd, postmaster的其他子进程继承自postmaster.
[root@74e5b4373374 ~]# ps -ewfjH|grep postgrespostgres   288     1   285     8  0 13:35 ?        00:00:00   /usr/bin/postgrespostgres   289   288   289   289  0 13:35 ?        00:00:00     postgres: logger process  postgres   291   288   291   291  0 13:35 ?        00:00:00     postgres: checkpointer process  postgres   292   288   292   292  0 13:35 ?        00:00:00     postgres: writer process  postgres   293   288   293   293  0 13:35 ?        00:00:00     postgres: wal writer process  postgres   294   288   294   294  0 13:35 ?        00:00:00     postgres: autovacuum launcher process  postgres   295   288   295   295  0 13:35 ?        00:00:00     postgres: stats collector process
在宿主机上看的话, container继承自docker server, container中的其他进程继承自container cmd或entrypoint调用.
# ps -ewfjH|grep postgresroot      4661     1  4661  4661  1 19:23 ?        00:02:14   /usr/bin/docker -d --selinux-enabled=false -g /data01/dockerroot      8378  4661  8378  8378  0 21:32 ?        00:00:00     /usr/sbin/sshd -D26        8840  8378  8837  8458  0 21:35 ?        00:00:00       /usr/bin/postgres26        8841  8840  8841  8841  0 21:35 ?        00:00:00         postgres: logger process  26        8843  8840  8843  8843  0 21:35 ?        00:00:00         postgres: checkpointer process  26        8844  8840  8844  8844  0 21:35 ?        00:00:00         postgres: writer process  26        8845  8840  8845  8845  0 21:35 ?        00:00:00         postgres: wal writer process  26        8846  8840  8846  8846  0 21:35 ?        00:00:00         postgres: autovacuum launcher process  26        8847  8840  8847  8847  0 21:35 ?        00:00:00         postgres: stats collector process
PID=1的进程是systemd(CentOS 7.x 是这样的)
root         1     0  0 19:03 ?        00:00:02 /usr/lib/systemd/systemd --switched-root --system --deserialize 23
如果CentOS 6.x 是init进程 : 
root         1     0  0 Nov20 ?        00:00:02 /sbin/init
关于cgroup请参考
图例 : 
docker process tree - 德哥@Digoal - PostgreSQL research
 


[参考]
1. 

转载地址:http://rhbxa.baihongyu.com/

你可能感兴趣的文章
Jmeter使用——参数化
查看>>
开网站步骤
查看>>
SAP 如何查看用户登录信息
查看>>
Django 模版语言详解
查看>>
线段树入门&lazy思想
查看>>
Python - 使用Pyinstaller将Python代码生成可执行文件
查看>>
每日编程系列——跳石板
查看>>
苹果低端化自救
查看>>
【NOIP2014模拟赛No.1】我要的幸福
查看>>
[BZOJ3732]Network
查看>>
《陶哲轩实分析》习题10.4.3
查看>>
linux环境下protobuf安装
查看>>
SQL2008将服务器的数据库表数据插入到本地数据库
查看>>
C++建立及销毁链表
查看>>
PHP编码
查看>>
jquery 元素选择器集合
查看>>
特种部队2全面反击bt电影种子下载
查看>>
微信公众号白名单配置
查看>>
微信接口调用返回码一览表
查看>>
PCI Express(四) - The transaction layer
查看>>