“Falló la verificación de la clave del host” Código de respuesta

Falló la verificación de la clave del host Git

#Windows:
ssh-keyscan -t rsa github.com >> %userprofile%/.ssh/known_hosts

#Mac:
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts

# (If it says 'Command not found', try to run the command in your Git Bash.)
garzj

Falló la verificación de la clave del host

#Windows:
ssh-keyscan -t rsa github.com >> %userprofile%/.ssh/known_hosts

#Mac:
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
garzj

Falló la verificación de la clave del host

"Host key verification failed" means that the host key of the remote host was changed.

SSH stores the host keys of the remote hosts in ~/.ssh/known_hosts. You can either edit that text file manually and remove the old key (you can see the line number in the error message), or use

ssh-keygen -R hostname
Crazy Caracal

La verificación de la clave del host falló.

$ ssh -o StrictHostKeyChecking=no [email protected] uptime
Grumpy Gemsbok

Respuestas similares a “Falló la verificación de la clave del host”

Preguntas similares a “Falló la verificación de la clave del host”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código