git仓库服务器SSH认证示例

简介:

git在用户管理及管理上,下面上三种解决办法:

 如果需要团队里的每个人都对仓库有写权限,又不能给每个人在服务器上建立账户,那么提供 SSH 连接就是唯一的选择了。我们假设用来共享仓库的服务器已经安装了 SSH 服务,而且你通过它访问服务器。  
  
有好几个办法可以让团队的每个人都有访问权。


第一个办法是给每个人建立一个账户,直截了当但过于繁琐。反复的运行 adduser 并且给所有人设定临时密码可不是好玩的。  
   
第二个办法是在主机上建立一个 git 账户,让每个需要写权限的人发送一个 SSH 公钥,然后将其加入 git 账户的 ~/.ssh /authorized_keys 文件。这样一来,所有人都将通过 git 账户访问主机。这丝毫不会影响提交的数据——访问主机用的身份不会影响 commit的记录。  
   
另一个办法是让 SSH 服务器通过某个 LDAP 服务,或者其他已经设定好的集中授权机制,来进行授权。只要每个人都能获得主机的 shell 访问权,任何可用的 SSH 授权机制都能达到相同效  # 如果需要团队里的每个人都对仓库有写权限,又不能给每个人在服务器上建立账户,那么提供 SSH 连接就是唯一的选择了。我们假设用来共享仓库的服务器已经安装了 SSH 服务,而且你通过它访问服务器。  
   

git 共享仓库服务器: Aries.lansgg.com 192.168.100.128

git 客户测试机:    node1.lansgg.com    192.168.100.129


方法一 示例、

git 仓库服务器,新建仓库,测试机获取git仓库,修改,远程上传。ssh 方式

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@Aries ~] # useradd -d /opt/gitServer gitServer
[root@Aries ~] # echo "git"|passwd --stdin gitServer
更改用户 gitServer 的密码 。
passwd : 所有的身份验证令牌已经成功更新。
[root@Aries ~] # yum install git -y
[root@Aries ~] # su - gitServer
[gitServer@Aries ~]$  ls
[gitServer@Aries ~]$  mkdir  TestProject.git
[gitServer@Aries ~]$  cd  TestProject.git/
[gitServer@Aries TestProject.git]$ git --bare init
Initialized empty Git repository  in  /opt/gitServer/TestProject .git/
[gitServer@Aries TestProject.git]$  ls
branches  config  description  HEAD  hooks  info  objects  refs

客户测试机

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[root@node1 ~] # useradd -d /opt/gitServer gitServer
[root@node1 ~] # echo "gitServer" |passwd --stdin gitServer
更改用户 gitServer 的密码 。
passwd : 所有的身份验证令牌已经成功更新。
[root@node1 ~] # su - gitServer
[root@node1 ~] # git clone gitServer@192.168.100.128:/opt/gitServer/TestProject.git
Initialized empty Git repository  in  /root/TestProject/ .git/
The authenticity of host  '192.168.100.128 (192.168.100.128)'  can't be established.
RSA key fingerprint is 9f:32:3a:b0:db:03:b6:c8:fc:a0:47:6c:e5:d1:b0:6a.
Are you sure you want to  continue  connecting ( yes /no )?  yes
Warning: Permanently added  '192.168.100.128'  (RSA) to the list of known hosts.
gitServer@192.168.100.128's password: 
warning: You appear to have cloned an empty repository.
[root@node1 ~] # ls
anaconda-ks.cfg   install .log   install .log.syslog  TestProject
[root@node1 ~] # cd TestProject/
[root@node1 TestProject] # echo "test file" > test.file
[root@node1 TestProject] # git add test.file 
[root@node1 TestProject] # git config --global user.name "gitServer"
[root@node1 TestProject] # git config --global user.email git@lansgg.com
[root@node1 TestProject] # git commit -m "test commit" test.file
[master 96bf273]  test  commit
  1 files changed, 1 insertions(+), 1 deletions(-)
[gitServer@node1 TestProject]$ git remote add test_remote_origin  ssh : //192 .168.100.128 /opt/gitServer/TestProject .git
[gitServer@node1 TestProject]$ git push test_remote_origin master
gitServer@192.168.100.128's password: 
Counting objects: 5,  done .
Writing objects: 100% (3 /3 ), 252 bytes,  done .
Total 3 (delta 0), reused 0 (delta 0)
To  ssh : //192 .168.100.128 /opt/gitServer/TestProject .git
    7e2e4a4..96bf273  master -> master

git 仓库服务端

1
2
3
4
5
6
[gitServer@Aries TestProject.git]$ git log
commit 96bf2738c6602283ea91778b999f7adf66c0082c
Author: gitServer <gitServer@lansgg.com>
Date:   Tue Sep 22 17:05:12 2015 +0800
 
     test  commit

我们可以随便找个目录clone下,看看是否存在 刚刚提交的 test.file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[root@Aries ~] # mkdir /opt/tt
[root@Aries ~] # cd /opt/tt
[root@Aries tt] # git clone gitServer@192.168.100.128:/opt/gitServer/TestProject.git
Initialized empty Git repository  in  /opt/tt/TestProject/ .git/
The authenticity of host  '192.168.100.128 (192.168.100.128)'  can't be established.
RSA key fingerprint is 9f:32:3a:b0:db:03:b6:c8:fc:a0:47:6c:e5:d1:b0:6a.
Are you sure you want to  continue  connecting ( yes /no )?  yes
Warning: Permanently added  '192.168.100.128'  (RSA) to the list of known hosts.
gitServer@192.168.100.128's password: 
remote: Counting objects: 6,  done .
remote: Compressing objects: 100% (2 /2 ),  done .
Receiving objects: 100% (6 /6 ), 435 bytes,  done .
remote: Total 6 (delta 0), reused 0 (delta 0)
[root@Aries tt] # ls
TestProject
[root@Aries tt] # cd TestProject/
[root@Aries TestProject] # ls
test . file
[root@Aries TestProject] # cat test.file 
test  file  abc
[root@Aries TestProject] #

方法二  示例、

在测试机创建两个账户 user1 user2,分别将秘钥上传至git 仓库侧,

1
2
3
4
5
6
7
8
9
[root@node1 ~] # useradd -d /opt/user1 user1
[root@node1 ~] # echo "user1" |passwd --stdin user1
更改用户 user1 的密码 。
passwd : 所有的身份验证令牌已经成功更新。
[root@node1 ~] # useradd -d /opt/user2 user2
[root@node1 ~] # echo "user2" |passwd --stdin user2
更改用户 user2 的密码 。
passwd : 所有的身份验证令牌已经成功更新。
[root@node1 ~] #
1
2
3
4
[root@node1 ~] # su - user1
[user1@node1 ~]$  ssh -keygen -t rsa
[root@node1 ~] # su - user2
[user1@node1 ~]$  ssh -keygen -t rsa

分别将user1、user2 用户的公钥新增git仓库服务器侧的

1
2
3
4
5
6
7
8
9
[user2@node1 . ssh ]$  pwd
/opt/user2/ . ssh
[user2@node1 . ssh ]$ ll
总用量 8
-rw-------. 1 user2 user2 1671 9月  22 17:18 id_rsa
-rw-r--r--. 1 user2 user2  404 9月  22 17:18 id_rsa.pub
[user2@node1 . ssh ]$  cat  id_rsa.pub 
ssh -rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAp0Im8iL7UR2b0PWrJ98YY /nqvjnuYWNc2F52SYn1/WA8rwGBWW0WBmKMoyW8YfSpCVk7QbyhX48Y3KF/Gf16CWRMm8xuyA +S5Seq3ZGnLbbVhb0OMO8VDAldovnIuPdI6005+ux /WbG1FKr3WxGs5k92ZO9hbXxpcVAwpvHY47t1v2LH5fW2jThypWMolUdp9TaNy7FkD2zaUNhbdqM1w67OSydiHAMfj183sEso9TykiXJvwlJeLdUMFywPTwfVqu2rxV0lY68B2mwr1pl5mcGPA4/0ruX8vSFsFLev8 +yi7LjccChAu /suPIFGLqRXrkW8ymsN/l3CkldnS9Y0BQ == user2@node1.lansgg.com
[user2@node1 . ssh ]$

git 仓库服务侧

1
2
[gitServer@Aries ~]$  mkdir  . ssh  &&  chmod  700 . ssh
[gitServer@Aries ~]$  touch  . ssh /authorized_keys  &&  chmod  600 . ssh /authorized_keys
1
2
3
4
[gitServer@Aries ~]$  cat  . ssh /authorized_keys 
ssh -rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA1pII1U64N /wl1OXotWdcU8d8 +ad0q6tkqdBgXLcR5zqXIq9PPe1NeLJ5HS9UIvZeN /LEyXGYh +fyg8tFQ+2PN3CmxnVwwcciyl1AKAgTeKUdleh8qcXPZkI0YZBpgTbuYWYHNjA6Qd9cvJSdKe9cVvwsv7N1z17Mx1uIfNSuSZ9e4XqUsJksBAzAYEGar4S13+Y /il7lquwkrdVBiWfWHmf/WoeY2RnzNBe9YtPVFUPL8HEoYyYaU +YXXMZKOZ8JwuLu1CPDJHTquSTyqdEwmgJWDdoiipgtyVOEVGZC0CqV16M2YpVqw26rrZ+nXUQYEnTrWyIiqt8 /xvzmeDIf0Q == user1@node1.lansgg.com
ssh -rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAp0Im8iL7UR2b0PWrJ98YY /nqvjnuYWNc2F52SYn1/WA8rwGBWW0WBmKMoyW8YfSpCVk7QbyhX48Y3KF/Gf16CWRMm8xuyA +S5Seq3ZGnLbbVhb0OMO8VDAldovnIuPdI6005+ux /WbG1FKr3WxGs5k92ZO9hbXxpcVAwpvHY47t1v2LH5fW2jThypWMolUdp9TaNy7FkD2zaUNhbdqM1w67OSydiHAMfj183sEso9TykiXJvwlJeLdUMFywPTwfVqu2rxV0lY68B2mwr1pl5mcGPA4/0ruX8vSFsFLev8 +yi7LjccChAu /suPIFGLqRXrkW8ymsN/l3CkldnS9Y0BQ == user2@node1.lansgg.com
[gitServer@Aries ~]$

客户测试机  无需用户名、密码

1
2
3
4
5
6
7
8
9
10
11
[user1@node1 ~]$ git clone gitServer@192.168.100.128: /opt/gitServer/TestProject .git
Initialized empty Git repository  in  /opt/user1/TestProject/ .git/
The authenticity of host  '192.168.100.128 (192.168.100.128)'  can't be established.
RSA key fingerprint is 9f:32:3a:b0:db:03:b6:c8:fc:a0:47:6c:e5:d1:b0:6a.
Are you sure you want to  continue  connecting ( yes /no )?  yes
Warning: Permanently added  '192.168.100.128'  (RSA) to the list of known hosts.
remote: Counting objects: 9,  done .
remote: Compressing objects: 100% (3 /3 ),  done .
remote: Total 9 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (9 /9 ),  done .
[user1@node1 ~]$


如果提交过程:提示如下错误

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Counting objects: 3,  done .
Writing objects: 100% (3 /3 ), 247 bytes | 0 bytes /s done .
Total 3 (delta 0), reused 0 (delta 0)
remote: error: refusing to update checked out branch: refs /heads/master
remote: error: By default, updating the current branch  in  a non-bare repository
remote: error: is denied, because it will  make  the index and work tree inconsistent
remote: error: with what you pushed, and will require  'git reset --hard'  to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can  set  'receive.denyCurrentBranch'  configuration variable to
remote: error:  'ignore'  or  'warn'  in  the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed  in  some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour,  set
remote: error:  'receive.denyCurrentBranch'  configuration variable to  'refuse' .

试着将如下配置新增到

1
2
3
[git@JumpServer1 pl.git]$  cat  .git /config 
[receive]
     denyCurrentBranch = ignore

再次提交



本文转自 西索oO 51CTO博客,原文链接:http://blog.51cto.com/lansgg/1697247

相关文章
|
3月前
|
应用服务中间件 网络安全 数据安全/隐私保护
网关服务器配置指南:实现自动DHCP地址分配、HTTP服务和SSH无密码登录。
哇哈哈,道具都准备好了,咱们的魔术秀就要开始了。现在,你的网关服务器已经魔法满满,自动分配IP,提供网页服务,SSH登录如入无人之境。而整个世界,只会知道效果,不会知道是你在幕后操控一切。这就是真正的数字世界魔法师,随手拈来,手到擒来。
183 14
|
4月前
|
Ubuntu 应用服务中间件 网络安全
关于一些轻量云服务器SSH断连的疑问
在使用2H2G配置的轻量级Ubuntu 22.04服务器时,按照Solana官网教程安装环境,执行`[cargo install]`命令(特别是安装avm和anchor包时),出现SSH连接中断且无法重新登录的问题。推测可能是低配服务器资源耗尽导致SSH进程被终止,即便CPU使用率下降也无法恢复连接,需重启服务器并等待约30分钟才能恢复正常。此现象或与服务器性能限制有关,期待更多测试与解释。
|
4月前
|
Ubuntu Linux 网络安全
在Linux云服务器上限制特定IP进行SSH远程连接的设置
温馨提示,修改iptables规则时要格外小心,否则可能导致无法远程访问你的服务器。最好在掌握足够技术知识和理解清楚操作含义之后再进行。另外,在已经配置了防火墙的情况下,例如ufw(Ubuntu Firewall)或firewalld,需要按照相应的防火墙的规则来设置。
181 24
|
5月前
|
安全 Linux 网络安全
在Linux(CentOS和AWS)上安装更新的git2的方法并配置github-ssh
经过以上这些步骤,你现在就能在GitHub上顺利往返,如同海洋中的航海者自由驰骋。欢迎你加入码农的世界,享受这编程的乐趣吧!
201 10
|
8月前
|
存储 开发工具 git
[Git] 深入理解 Git 的客户端与服务器角色
Git 的核心设计理念是分布式,每个仓库既可以是客户端也可以是服务器。通过 GitHub 远程仓库和本地仓库的协作,Git 实现了高效的版本管理和代码协作。GitHub 作为远程裸仓库,存储项目的完整版本历史并支持多客户端协作;本地仓库则通过 `.git` 文件夹独立管理版本历史,可在离线状态下进行提交、回滚等操作,并通过 `git pull` 和 `git push` 与远程仓库同步。这种分布式特性使得 Git 在代码协作中具备强大的灵活性和可靠性。
190 18
[Git] 深入理解 Git 的客户端与服务器角色
|
7月前
|
弹性计算 云计算
阿里云认证全新发布【Apsara Clouder云计算专项技能认证:云服务器ECS入门】
阿里云认证全新发布【Apsara Clouder云计算专项技能认证:云服务器ECS入门】
|
8月前
|
Devops Shell 网络安全
git使用之如何将一套代码同时推送至github|gitee|gitcode|gitlab等多个仓库-含添加ssh-优雅草央千澈完美解决-提供整体提交代码
git使用之如何将一套代码同时推送至github|gitee|gitcode|gitlab等多个仓库-含添加ssh-优雅草央千澈完美解决-提供整体提交代码
327 16
git使用之如何将一套代码同时推送至github|gitee|gitcode|gitlab等多个仓库-含添加ssh-优雅草央千澈完美解决-提供整体提交代码
|
8月前
|
网络安全 Apache 开发工具
图解Git——服务器上的Git《Pro Git》
Git 远程仓库及通信协议简介:远程仓库为团队协作提供平台,支持共享代码。常见形式为裸仓库,仅保存 Git 元数据。Git 支持多种协议,包括本地协议(适合局域网)、HTTP/HTTPS(推荐智能 HTTP,安全易用)、SSH(企业内部协作首选)和 Git 协议(高效只读访问)。选择协议需根据协作需求、安全性和配置难度权衡。此外,搭建 Git 服务器涉及创建裸仓库、上传至服务器、初始化共享仓库等步骤。生成 SSH 公钥、配置服务器及使用 GitWeb 或 GitLab 等工具可进一步增强功能。第三方托管服务如 GitHub 提供便捷的托管选项,适合快速启动和开源项目。总结而言,自行运行服务器提
198 11
|
26天前
|
弹性计算 编解码 大数据
性价比最高提升50%!阿里云企业级云服务器上新
阿里云ECS云服务器推出全新升级的u2系列实例,包括基于Intel的u2i实例与首个基于AMD的u2a实例,提供企业级独享算力,综合性价比最高提升50%。u2i实例已开放公测,适用于中小型数据库、企业网站建设等场景。同时发布基于AMD的第九代旗舰实例g9ae,性能提升65%,适用于大数据、视频转码等密集型业务。
154 0
|
1月前
|
弹性计算 运维 安全
阿里云轻量应用服务器是什么?看完你就知道了
阿里云轻量应用服务器是面向网站建设、开发测试等轻量场景的云服务器,按套餐售卖,内置多种应用镜像,支持一键部署,操作简单,适合个人开发者和中小企业使用。
255 0

热门文章

最新文章