gpt4 book ai didi

Gitolite git clone 需要ssh密码

转载 作者:太空狗 更新时间:2023-10-29 13:36:29 34 4
gpt4 key购买 nike

在 Ubuntu 服务器上使用 Gitolite。我正在处理一个项目,我需要 git 命令的特定语法。

效果很好:

git clone gitolite@servername:testing.git

要求输入密码

git clone ssh://gitolite@servername/home/gitolite/repositories/testing.git

从同一个盒子里跑出来,一个接一个。我可以输入密码并且它有效。但我需要自动工作。听起来像是 ssh pub/private key 的问题。有什么想法吗?

更新:文件权限有问题。不确定 too 命令之间的区别。但是 /var/log/auth.log 显示了一些错误

最佳答案

你需要设置 ~gitolite/.ssh/authorized_keys 像这样

command="/home/gitolite/bin/gl-auth-command <USERNAME>",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAA...KEY.HERE...ZZZZ== user@label

一个带有相关信息的随机 URL(见页面底部)

http://www.geekgumbo.com/2011/10/18/ssh-and-the-gitolite-installation-part-2/

确保根据 SSH 要求更改 ~gitolite/.ssh/authorized_keys 的所有权:

chown gitolite: ~gitolite/.ssh/authorized_keys
chmod go-w ~gitolite/.ssh/authorized_keys

编辑:反射(reflect)您将“git”更改为“gitolite”系统用户名的编辑。

从客户端测试您的访问权限:

ssh -l gitolite -i <file_id_rsa_foobar> -v -o PasswordAuthentication=no -T <host>

在我的本地系统上似乎需要添加 -T 来获取横幅(输入借口错误):

....
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/username/.ssh/id_rsa_foobar
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering DSA public key: /home/username/.ssh/id_dsa_foobar
debug1: Remote: Forced command: /home/gitolite/bin/gl-auth/command <username>
....
hello <username> this is gitolite vX.X.XX-g0123abcd running on git X.X.X
the gitolite config gives you the following access:
R W mydir/project1
....

关于Gitolite git clone 需要ssh密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12467293/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com