Docker-Container-SSH-Fehler: ssh_exchange_identification: Verbindung vom Remote-Host geschlossen

Docker-Container-SSH-Fehler: ssh_exchange_identification: Verbindung vom Remote-Host geschlossen

Ich versuche, einen Ubuntu-Container einzurichten, openssh-serverdamit ich vom Host aus per SSH darauf zugreifen kann. Ich weiß, dass das nicht die Standardmethode ist, aber ich möchte es unbedingt haben ssh.

Das ist meinDockerfile

# Select base image
FROM ubuntu:16.04

# Set the current working directory
WORKDIR /home

# Update the system, download any packages essential for the project
RUN dpkg --add-architecture i386
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y git build-essential make gcc vim net-tools iputils-ping ca-certificates openssh-server libc6:i386 libstdc++6:i386

# Allow ssh root login
RUN echo "root:root" | chpasswd

# RUN rpl "PermitRootLogin prohibit-password" "PermitRootLogin yes" /etc/ssh/sshd_config
RUN sed -i 's/prohibit-password/yes/' /etc/ssh/sshd_config

RUN cat /etc/ssh/sshd_config
RUN mkdir /root/.ssh

RUN chown -R root:root /root/.ssh;chmod -R 700 /root/.ssh

RUN echo “StrictHostKeyChecking=no” >> /etc/ssh/ssh_config

RUN service ssh restart


# Open port 22 so linked containers can see it
EXPOSE 22

# Import any additional files into the environment (from the host)
ADD otherfile .

Ich starte den Container mit, docker run -t -d -p 2222:22aber immer wenn ich versuche, mich per SSH anzumelden, erhalte ich folgende Fehlermeldung ssh_exchange_identification: Connection closed by remote host:

➜ ssh -v -p 2222 root@localhost /bin/bash
OpenSSH_7.9p1, LibreSSL 2.7.3
debug1: Reading configuration data /Users/giorgio/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 48: Applying options for *
debug1: /etc/ssh/ssh_config line 52: Applying options for *
debug1: Connecting to localhost port 2222.
debug1: Connection established.
debug1: identity file /Users/giorgio/.ssh/id_rsa type -1
debug1: identity file /Users/giorgio/.ssh/id_rsa-cert type -1
debug1: identity file /Users/giorgio/.ssh/id_dsa type -1
debug1: identity file /Users/giorgio/.ssh/id_dsa-cert type -1
debug1: identity file /Users/giorgio/.ssh/id_ecdsa type -1
debug1: identity file /Users/giorgio/.ssh/id_ecdsa-cert type -1
debug1: identity file /Users/giorgio/.ssh/id_ed25519 type -1
debug1: identity file /Users/giorgio/.ssh/id_ed25519-cert type -1
debug1: identity file /Users/giorgio/.ssh/id_xmss type -1
debug1: identity file /Users/giorgio/.ssh/id_xmss-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.9
ssh_exchange_identification: Connection closed by remote host

Weiß jemand, was diesen Fehler verursacht und wie man ihn behebt?

Antwort1

RUN service ssh restart

Dies führt einen Neustart des SSH-Dienstes (eigentlich einen Start) während der Image-Erstellungsphase aus, nicht im zukünftigen Container. Es gibt kein „ CMDnor“ ENTRYPOINTin Ihnen Dockerfile, also wird standardmäßig das in Ihrem Basisimage konfigurierte(n) verwendet (das ist Bash)

Mit anderen Worten: Wenn Sie Ihren Container starten, läuft kein SSH-Daemon. Eine vorübergehende Lösung besteht darin, einen Exec-Befehl auf dem laufenden Container auszuführen:docker exec your_container_name service ssh start

Um das Problem richtig zu beheben, müssen Sie das Image anweisen, sshd zu starten, wenn ein Container erstellt wird (sieheDockerisieren Sie einen SSH-Dienstbei Docker-Dokumenten). Kurz gesagt:

  • Entfernen Sie die RUN service ssh restartZeile
  • füge die beiden nächsten Zeilen hinzu
RUN mkdir /var/run/sshd
CMD ['/usr/sbin/sshd', '-D']
  • Erstellen Sie Ihr Image neu, starten Sie einen neuen Container, führen Sie SSH durch und genießen Sie es.

verwandte Informationen