git - 克隆或推送时询问密码 - docker gitlab

标签 git docker ssh passwords gitlab

我刚刚用 docker ( https://hub.docker.com/r/gitlab/gitlab-ce/ ) 安装了最新版本的 gitlab 并添加了我的 ssh key ,但是当我尝试推送到这个 docker gitlab 时它仍然要求输入密码。

desktop system: window10,osx

server system : centos 7

docker git (lastest version): docker pull gitlab/gitlab-ce


这里是 ssh -vt输出:
$ ssh -vt git@23.234.53.236
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: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com 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
git@23.234.53.236's password:

最佳答案

这是“Gitlab 自升级以来未将 SSH key 添加到 authorized_keys”的问题
这是解决方案:
root@int-gitlab-01:~ # 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 ..................................................... ………………………………………………………………………………
root@int-gitlab-01:~ # su - git Last login: Mon Jul 10 09:24:30 AEST 2017 on pts/0 git@int-gitlab-01:~ # ls -la .ssh/authorized_keys -rw-------. 1 git git 43286 Jul 10 13:36 .ssh/authorized_keys

关于git - 克隆或推送时询问密码 - docker gitlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47759083/

相关文章:

混帐推送 : Push all commits except the last one

amazon-web-services - 发布端口时,Swarm 中的 Docker 服务无法连接到 AWS RDS

mysql - Docker Mysql容器root密码【mysql监听端口0】

linux - 一次更新(拉取)所有 docker 镜像

Git 程序可以减少 merge 多个 merge 时的噪音?

git 脚本 : How to list all git branches containing a commit

eclipse - 如何在eclipse中解决 "ssh error occurred during unpacking on the remote end: unpack-objects abnormal exit"

bash - 如何在单个命令中通过 ssh+bash 进入 Docker 容器

api - 无法通过 SSH 连接到 Windows Azure 虚拟机

bash - 如何将脚本的输出作为参数传递给 ssh 命令?