Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password)
Gitlab ssh提交报错 Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
在使用ssh git pull的时候会提示你输入密码,Permission denied, please try again.但是你输入的密码一直是正确的,还是会
Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
fatal: Could not read from remote repository.
key point:
本地的文件id_rsa.pub 或 id_dsa.pub已有,但不是新服务的SSH Key。
解决步骤:
1、打开电脑终端,输入以下命令:ls -al ~/.ssh
2、生成/设置SSH Key
- 终端出现文件id_rsa.pub 或 id_dsa.pub,则表示该电脑已经存在SSH Key,此时可继续输入命令:
pbcopy < ~/.ssh/id_rsa.pub
- 终端未出现id_rsa.pub 或 id_dsa.pub文件,表示该电脑还没有配置SSH Key,此时需要输入命令:
ssh-keygen -t rsa -C"your_email@example.com"
连续回车即可,也可能会让你输入密码,密码就是你的开机密码
此时再输入命令:ls -al ~/.ssh
就会出现id_rsa.pub
和 id_dsa.pub
两个文件,然后重复情况一的步骤即输入以下命令再进行步骤3即可:
pbcopy < ~/.ssh/id_rsa.pub
3、 将SSH Key添加到GitLab中
打开GitLab, 点击“ADD SSH KEY”按钮添加,将已经获得的SSH Key粘贴到“Key”。
执行pbcopy < ~/.ssh/id_rsa.pub ssh密钥复制到剪切板,将ssh代码复制进去 命名即可。