git - llave - SSH está buscando en el lugar incorrecto para el par de claves pública/privada en Windows
ssh desde cmd (6)
Compruebe which ssh
ver si está utilizando /usr/bin/ssh
o alguna otra cosa, que podría haberse instalado por accidente.
En mi caso, mi ssh fue reemplazado por Chocolatey luego de instalar rsync
. Después de ejecutar choco uninstall rsync
, mi SSH estaba funcionando nuevamente.
Estoy intentando configurar GIT en mi máquina con Windows XP, pero SSH sigue creando y buscando el par de claves público / privado en lugares no sensuales, por ejemplo, /.ssh/id_rsa
¿Hay un archivo de configuración en la instalación de GIT para Windows donde puedo cambiar esto a mi directorio de inicio u otro lugar definido por el usuario? Por defecto, ofrece crear nuevos pares de claves en //.ssh/id_rsa, pero eso me da el error "No se pudo crear el directorio ''//.ssh''." Y cuando pueda encontrar un directorio en el que pueda crearlo, GIT no se verá allí.
Descubrí cómo configurar manualmente mi directorio personal en Windows XP:
- Haga clic derecho en "Mi computadora"
- Elija la pestaña "Avanzado"
- Haga clic en el botón "Variables ambientales"
- En la sección "Variables del sistema", haga clic en "Nuevo"
- En el "Nombre de variable", ingrese "home".
- En el "Valor de variable" ingrese en la ruta a su perfil.
Para hacer lo mismo a través del símbolo del sistema, haga lo siguiente:
setx HOME "your/path/to/home"
(Tenga en cuenta el sufijo x - Esto se usa para persistir el cambio)
En Windows 7, simplemente coloque su clave privada (id_rsa) dentro de C: / Users / .ssh FOLDER. Si la carpeta .ssh no existe, solo créela. Descargue GIT para Windows, copie en su Directorio de proyectos y haga git clone ssh: //@/.git
Estaba teniendo un problema similar en Windows 7. La variable de entorno HOME
parecía estar configurada correctamente:
$ echo $HOME
C:/Users/craibuc
Sin embargo, los intentos de conectarse para probar el acceso ssh
de github fallaron:
$ ssh -Tv [email protected]
OpenSSH_6.6.1, OpenSSL 1.0.1i 6 Aug 2014
debug1: Connecting to github.com [192.30.252.129] port 22.
debug1: Connection established.
Could not create directory ''C/.ssh''.
debug1: identity file C/.ssh/id_rsa type -1
debug1: identity file C/.ssh/id_rsa-cert type -1
debug1: identity file C/.ssh/id_dsa type -1
debug1: identity file C/.ssh/id_dsa-cert type -1
debug1: identity file C/.ssh/id_ecdsa type -1
debug1: identity file C/.ssh/id_ecdsa-cert type -1
debug1: identity file C/.ssh/id_ed25519 type -1
debug1: identity file C/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1
debug1: Remote protocol version 2.0, remote software version libssh-0.6.0
debug1: no match: libssh-0.6.0
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-sha1 none
debug1: kex: client->server aes128-ctr hmac-sha1 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
The authenticity of host ''github.com (192.30.252.129)'' can''t be established.
RSA key fingerprint is xx:xx:xx.
Are you sure you want to continue connecting (yes/no)? yes
Failed to add the host to the list of known hosts (C/.ssh/known_hosts).
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: C/.ssh/id_rsa
debug1: Trying private key: C/.ssh/id_dsa
debug1: Trying private key: C/.ssh/id_ecdsa
debug1: Trying private key: C/.ssh/id_ed25519
debug1: No more authentication methods to try.
Permission denied (publickey).
Por algún motivo, ssh
intentaba acceder a C/.ssh
.
Cuando establecí la variable usando setx HOME /c/users/craibuc
y reinicié el shell, pude conectarme:
$ ssh -T [email protected]
Warning: Permanently added the RSA host key for IP address ''192.30.252.130'' to the list of known hosts.
Hi craibuc! You''ve successfully authenticated, but GitHub does not provide shell access.
Tuve el mismo tipo de problema cuando uso una máquina con la política de dominio configurando el perfil del usuario en una unidad de red (en este caso mapeada a Z:
.
Cuando intente hacer algo con Powershell obtendría mensajes como este. Establecer la variable PATH de home
no ayudó.
git clone ssh://[email protected]:1234/myproject
Cloning into ''myproject''...
Could not create directory ''/z/.ssh''.
The authenticity of host ''[mydomain.com]:1234 ([1.1.1.1]:1234)'' can''t be established.
RSA key fingerprint is 00:11:22:33:$4:55:66:77:88.
Are you sure you want to continue connecting (yes/no)? yes
Failed to add the host to the list of known hosts (/z/.ssh/known_hosts).
Permission denied (publickey).
Please make sure you have the correct access rights
and the repository exists.
Cuando cloné desde git bash, estuvo bien, ya que /z/.ssh
etc. es una forma válida de apuntar a Z:/.ssh
desde un shell.
Recommended método Recommended de MSYS2 es establecer db_home
en /etc/nsswitch.conf
a su directorio de inicio.
@VarunAgw a @VarunAgw por pointing en la dirección correcta.
Git-for-Windows incluye env
en db_home
, que debería leer su variable HOME
bash, sin embargo, no es unreliable .