gitlab更新了ssh-key之后再登录还是要求输入密码
在gitlab更新了ssh-key,并且把pub更新到了gitlab 的ssh-key去了, 但是每一次连接的时候还是要求输入password, 问题是我已经输入了gitlab账号的密码还是报错。。。 晕
一直报:debug1: Authentications that can continue: publickey,password
查了很多, 有说需要更改权限 chmod 600 或者700的, 但是尝试了之后都没有
尝试使用 ssh -Tvvv git@gitlab.example.com
查看详细记录 (这里gitlab.example.com
替换成真实的gitlab网址)
一直有:
shell
debug1: Authentications that can continue: publickey,password
...
debug3: remaining preferred: ,password
debug3: authmethod_is_enabled password
debug1: Next authentication method: password
git@gitlab.example.com's password: // 输入了 gitlab用户密码还是不对
看了下面这些解答:
但是还是没有解决
尝试 更新gitconfig也没办法
https://blog.csdn.net/yzpbright/article/details/122490748
查看gitlab 官方文档 也没有说明
更新rsa密码为ed25519之后也是不行, gitlab官方文档里面有Authentication , Signing , 和Authentication&Signing 的方式,分别尝试了发现还是一样。。。
这里先试用 git remote -v
看到远端确实是使用 ssh的
origin ssh://git@gitlab.example.com:2022/backend/module.git (fetch)
origin ssh://git@gitlab.example.com:2022/backend/module.git (push)
但是注意到后面跟了一个2022, 或许是 端口错误了?
尝试 加上这个端口试试
shell
ssh -Tvvv -p 2022 git@gitlab.example.com
终于没有报错了, 完美!!!
猜测应该是公司自己的gitlab升级设置了端口2022,但是默认使用的话还是使用80端口? 导致验证失败