2017-12-11 12 views
1

だけドッカ(https://hub.docker.com/r/gitlab/gitlab-ce/),added SSHキーが、まだパスワードを尋ねるとgitlabの最新のバージョンをインストールするときに、プッシュ - ドッキングウィンドウgitlab尋ねるパスワード際にクローンまたはプッシュ - ドッキングウィンドウgitlab

デスクトップシステム:window10、OSX

サーバーシステム:CentOSの7

ドッカーgitの(最新のバージョン):ドッカープルgitlab/gitlab-CE

ここでのssh -vt出力は次のようになります。 $ 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:

答えて

0

それをダブルチェック:

  • あなたは
  • (1行で)あなたのGitLab SSH設定のアカウントページにcontent of the public key/c/Users/Nathan/.ssh/id_rsa.pub)を追加しました(場合サーバーにアクセスできます)、23.234.53.236:~/git/.ssh/authorized_keysにはその公開鍵も含まれています。
+0

@Nathanあなたは、そのサーバー上の〜Gitのホームディレクトリへのアクセス権を持っていますか? – VonC

+0

1.iは内側のドッカーパスにgitlab2.isを追加しました:/var/opt/gitlab/.ssh – Nathan

+0

@Nathan多分https://docs.gitlab.com/omnibus/common_installation_problems/README.html#git-ユーザーが持っていないsshアクセス? – VonC

1

これはここ を "Gitlabアップグレード以来のauthorized_keysするSSHキーを追加していない" との問題が解決されている。

[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

興味深いフィードバック。 +1。私の答えよりも正確です。 – VonC

関連する問題