2017-12-11 11 views
1

nur neueste Version von Gitlab mit Docker (https://hub.docker.com/r/gitlab/gitlab-ce/),added SSH-Schlüssel installieren, aber immer noch Passwort gefragt, wenn Push - Docker Gitlabfragen Kennwort ein, wenn Klon oder Push - Docker Gitlab

Desktop-System: window10, osx

Server System: centos 7

docker git (neueste Version): docker Pull Gitlab/Gitlab-ce

hier ist die ssh -vt Ausgabe: $ ssh -vt [email protected] OpenSSH_7.3p1, OpenSSL 1.0.2k 26 Jan 2017 debug1: Reading configuration data /c/Users/Nathan/.ssh/config debug1: Reading configuration data /etc/ssh/ssh_config debug1: Connecting to 23.234.53.236 [23.234.53.236] port 22. debug1: Connection established. debug1: identity file /c/Users/Nathan/.ssh/id_rsa type 1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_rsa-cert type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_dsa type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_dsa-cert type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_ecdsa type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_ecdsa-cert type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_ed25519 type -1 debug1: key_load_public: No such file or directory debug1: identity file /c/Users/Nathan/.ssh/id_ed25519-cert type -1 debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_7.3 debug1: Remote protocol version 2.0, remote software version OpenSSH_7.4 debug1: match: OpenSSH_7.4 pat OpenSSH* compat 0x04000000 debug1: Authenticating to 23.234.53.236:22 as 'git' debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: algorithm: [email protected] debug1: kex: host key algorithm: ecdsa-sha2-nistp256 debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none debug1: expecting SSH2_MSG_KEX_ECDH_REPLY debug1: Server host key: ecdsa-sha2-nistp256 SHA256:VgBduYKrMafvYg27PfLCXZmiA0vCAnz8obliVveAX+Y debug1: Host '23.234.53.236' is known and matches the ECDSA host key. debug1: Found key in /c/Users/Nathan/.ssh/known_hosts:2 debug1: rekey after 134217728 blocks debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: rekey after 134217728 blocks debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_EXT_INFO received debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512> debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password debug1: Next authentication method: publickey debug1: Offering RSA public key: /c/Users/Nathan/.ssh/id_rsa debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password debug1: Trying private key: /c/Users/Nathan/.ssh/id_dsa debug1: Trying private key: /c/Users/Nathan/.ssh/id_ecdsa debug1: Trying private key: /c/Users/Nathan/.ssh/id_ed25519 debug1: Next authentication method: password [email protected]'s password:

Antwort

0

, dass Doppel-Check:

  • Sie die content of the public key (/c/Users/Nathan/.ssh/id_rsa.pub) auf Ihre Gitlab SSH Einstellung Kontoseite haben hinzufügen (in einer Zeile)
  • (wenn Sie können auf den Server zugreifen), dass 23.234.53.236:~/git/.ssh/authorized_keys auch diesen öffentlichen Schlüssel enthält.
+0

@Nathan haben Sie Zugriff auf die auf diesem Server ~ git Home-Verzeichnis haben? – VonC

+0

1.i hat zu gitlab 2.is auf dem inneren docker Pfad hinzugefügt: /var/opt/gitlab/.ssh – Nathan

+0

@Nathan Vielleicht https://docs.gitlab.com/omnibus/common_installation_problems/README.html#git- user-hat-nicht-ssh-Zugang dann? – VonC

1

dies Problem mit "Gitlab nicht SSH-Schlüssel hinzugefügt seit Upgrade auf authorized_keys" hier ist die Lösung:

[email protected]:~ # gitlab-rake gitlab:shell:setup This will rebuild an authorized_keys file. You will lose any data stored in authorized_keys file. Do you want to continue (yes/no)? yes ................. .................................................. .......

[email protected]:~ # su - git Last login: Mon Jul 10 09:24:30 AEST 2017 on pts/0 [email protected]:~ # ls -la .ssh/authorized_keys -rw-------. 1 git git 43286 Jul 10 13:36 .ssh/authorized_keys

+0

Interessantes Feedback. +1. Präziser als meine Antwort. – VonC