gpt4 book ai didi

linux - docker attach vs lxc-attach

转载 作者:IT老高 更新时间:2023-10-28 21:19:51 30 4
gpt4 key购买 nike

更新:Docker 0.9.0 现在使用 libcontainer,从 LXC 转移参见:Attaching process to Docker libcontainer container

我正在运行一个 Elasticsearch :

docker run -d -p 9200:9200 -p 9300:9300 dockerfile/elasticsearch

检查它显示的过程如下:

$ docker ps --no-trunc
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
49fdccefe4c8c72750d8155bbddad3acd8f573bf13926dcaab53c38672a62f22 dockerfile/elasticsearch:latest /usr/share/elasticsearch/bin/elasticsearch java About an hour ago Up 8 minutes 0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp pensive_morse

现在,当我尝试附加正在运行的容器时,我被堆叠了:

$  sudo docker attach 49fdccefe4c8c72750d8155bbddad3acd8f573bf13926dcaab53c38672a62f22
[sudo] password for lsoave:

tty 未连接且提示未返回。用 lxc-attach 做同样的事情可以正常工作:

$ sudo lxc-attach -n 49fdccefe4c8c72750d8155bbddad3acd8f573bf13926dcaab53c38672a62f22
root@49fdccefe4c8:/# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 49 20:37 ? 00:00:20 /usr/bin/java -Xms256m -Xmx1g -Xss256k -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMa
root 88 0 0 20:38 ? 00:00:00 /bin/bash
root 92 88 0 20:38 ? 00:00:00 ps -ef
root@49fdccefe4c8:/#

有人知道 docker attach 有什么问题吗?

注意。 dockerfile/elasticsearch结尾:

ENTRYPOINT ["/usr/share/elasticsearch/bin/elasticsearch"]

最佳答案

您正在附加到一个运行 elasticsearch 的容器,该容器不是交互式命令。由于容器没有运行 shell,因此您没有输入 shell。 lxc-attach 起作用的原因是因为它给了你一个默认的shell。根据 man lxc-attach :

If no command is specified, the current default shell of the user running lxc-attach will be looked up inside the container and executed. This will fail if no such user exists inside the container or the container does not have a working nsswitch mechanism.

docker attach 的行为符合预期。

关于linux - docker attach vs lxc-attach,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22310925/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com