gpt4 book ai didi

linux - ssh_exchange_identification : read: Connection reset by peer; ubuntu in Docker

转载 作者:太空宇宙 更新时间:2023-11-04 04:32:38 25 4
gpt4 key购买 nike

我正在尝试在 Docker 中设置一些 Ubuntu 镜像,以用作蜜 jar 。

我遵循了这里的指南: https://github.com/mrschyte/dockerpot

这是我使用的 Docker 文件的副本:

FROM ubuntu:16.04

RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:screencast' | chpasswd
RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config

# SSH login fix. Otherwise user is kicked off after login
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd

ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile

EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]

运行docker ps我可以看到容器已创建:

CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
b7c1962cfc27 def9be976ec5 "/sbin/init" 45 minutes ago Up 19 minutes 22/tcp honeypot-192.168.122.1

但是当我尝试从我的计算机连接到它们时,连接被重置,并出现错误:ssh_exchange_identification:读取:连接由对等方重置

最佳答案

从 init 脚本中删除 /sbin/init 解决了问题。

与此相关的内容不应在 docker 中使用,因为它可能无法初始化服务。

关于linux - ssh_exchange_identification : read: Connection reset by peer; ubuntu in Docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50466074/

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