Centos 7.3搭建git服务器

简介:

服务器端:Centos 7.3环境搭建git服务器

客户端:git客户端可以是windows、linux和mac


1、git服务器和客户端都安装Git

1
[root@localhost ~] # yum install git


2、git服务器上创建一个git用户组和用户,用来运行git服务

1
2
[root@localhost ~] # groupadd git
[root@localhost ~] # useradd git -g git


3、创建证书登录(如果用ssh key操作,要操作这步。如果用密码登录不需要操作这步)
收集所有需要登录的客户端的公钥,公钥位于id_rsa.pub文件中。ssh key可以让客户端与git服务器安全加密连接,而且不需要输入密码。

(1)客户端生成公钥和私钥。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[root@localhost ~] # ssh-keygen -t rsa -C "442102293@qq.com"
Generating public /private  rsa key pair.
Enter  file  in  which  to save the key ( /root/ . ssh /id_rsa ): 
Created directory  '/root/.ssh' .
Enter passphrase (empty  for  no passphrase): 
Enter same passphrase again: 
Your identification has been saved  in  /root/ . ssh /id_rsa .
Your public key has been saved  in  /root/ . ssh /id_rsa .pub.
The key fingerprint is:
64:78:e9:5d:72:d0:d5:0c:51:f9: dc :25:ff:b5:5b:d9 442102293@qq.com
The key's randomart image is:
+--[ RSA 2048]----+
|          .. .+*o|
|       . . .. ..+|
|      . = . o  ++|
|       = . +    *|
|        S .     *|
|               oE|
|                o|
|               . |
|                 |
+-----------------+


(2)查看客户端生成的公钥。

1
[root@localhost ~] # cat ~/.ssh/id_rsa.pub


(3)git服务器上创建/home/git/.ssh/authorized_keys文件,并设置权限。

1
2
3
4
5
6
[root@localhost ~] # cd /home/git/
[root@localhost git] # mkdir .ssh
[root@localhost git] # chmod 700 .ssh
[root@localhost git] # chown -R git.git .ssh
[root@localhost git] # touch .ssh/authorized_keys
[root@localhost git] # chmod 600 .ssh/authorized_keys   (网上还有说法最好644)


(4)把客户端公钥内容复制到/home/git/.ssh/authorized_keys文件

(5)git服务器上修改ssh配置文件,将密码验证关掉,开启ssh key验证。

1
2
3
4
5
6
vi  /etc/ssh/sshd_config
找到PasswordAuthentication节点并设置为no;
开启RSA认证,将前面的 #去掉,并确保如下配置:
RSAAuthentication  yes
PubkeyAuthentication  yes
AuthorizedKeysFile . ssh /authorized_keys


(6)git服务器上重启SSH服务使配置生效:

1
2
[root@localhost git] # systemctl restart sshd
[root@localhost git] # service sshd restart


4、git服务器上初始化Git仓库
首先我们选定一个目录作为Git仓库,比如是/home/gitrepo/runoob.git(叫这个名字,是因为参考完善别的文章):

1
2
3
4
5
6
7
8
[root@localhost git] # cd /home
[root@localhost home] # mkdir gitrepo
[root@localhost home] # chown git:git gitrepo/
[root@localhost home] # cd gitrepo
[root@localhost gitrepo] # git init --bare runoob.git
初始化空的 Git 版本库于  /home/gitrepo/runoob .git/
[root@localhost gitrepo] # chown -R git:git runoob.git
备注:服务器上的Git仓库名一般都以.git结尾。然后,把仓库所属用户改为git:


5、客户端操作,克隆仓库

1
2
3
4
[root@localhost ~] # mkdir testdata
[root@localhost testdata] # git clone git@192.168.1.109:/home/gitrepo/runoob.git
Initialized empty Git repository  in  /root/testdata/runoob/ .git/
warning: You appear to have cloned an empty repository.


6、客户端操作,提交文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[root@localhost testdata] # cd runoob/
[root@localhost runoob] # vi test.sh
[root@localhost runoob] # git add test.sh 
[root@localhost runoob] # git commit -m "测试"
[master (root-commit) ee961b2] 测试
  1 files changed, 1 insertions(+), 0 deletions(-)
  create mode 100644  test .sh
[root@localhost runoob] # git status
# On branch master
nothing to commit (working directory clean)
[root@localhost runoob] # git log
commit ee961b270d4541ff7440765a4c32d9ea722e3611
Author: gxm <gxm@ test .com>
Date:   Sun May 22 09:02:40 2016 +0800
     测试
[root@localhost runoob] # git remote -v
origin    git@192.168.1.109: /home/gitrepo/runoob .git (fetch)
origin    git@192.168.1.109: /home/gitrepo/runoob .git (push)
[root@localhost runoob] # git push origin master
Counting objects: 3,  done .
Writing objects: 100% (3 /3 ), 216 bytes,  done .
Total 3 (delta 0), reused 0 (delta 0)
To git@192.168.1.109: /home/gitrepo/runoob .git
  * [new branch]      master -> master


7、git服务器上,可以查看objects这个时间知道是否提交了

1
2
3
4
5
6
7
8
9
10
[root@localhost runoob.git] # ll
总用量 12
drwxr-xr-x.  2 git git   6 9月  14 00:12 branches
-rw-r--r--.  1 git git  66 9月  14 00:12 config
-rw-r--r--.  1 git git  73 9月  14 00:12 description
-rw-r--r--.  1 git git  23 9月  14 00:12 HEAD
drwxr-xr-x.  2 git git 242 9月  14 00:12 hooks
drwxr-xr-x.  2 git git  21 9月  14 00:12 info
drwxr-xr-x. 10 git git  90 9月  14 00:55 objects
drwxr-xr-x.  4 git git  31 9月  14 00:12 refs




本文转自 sailikung 51CTO博客,原文链接:http://blog.51cto.com/net881004/2068517,如需转载请自行联系原作者
相关文章
|
1月前
|
Linux 开发工具 数据安全/隐私保护
搭建 Git 私人服务器完整指南
本文详细介绍了如何从零开始搭建一个私人的 `Git` 服务器。首先,文章解释了 `Git` 的概念及其优势,并阐述了搭建私人 `Git` 服务器的重要性,包括数据隐私、定制化需求及成本效益。接着,文章分步骤指导读者完成服务器的准备工作,包括操作系统、硬件和网络要求。随后,详细介绍了在不同操作系统上安装 `Git` 的方法,并演示了如何创建 `git` 用户、部署仓库以及设置免密登录。此外,还提供了客户端连接远程仓库的具体步骤,包括 Linux 和 Windows 的操作方式。最后,文章探讨了迁移仓库的方法以及搭建 `Git` 服务器的一些进阶选项。
81 0
搭建 Git 私人服务器完整指南
|
2月前
|
存储 安全 Linux
新 CentOS 7 服务器的基本配置
新 CentOS 7 服务器的基本配置
41 1
|
2月前
|
开发工具 git iOS开发
服务器配置Huggingface并git clone模型和文件
该博客提供了在服务器上配置Huggingface、安装必要的工具(如git-lfs和huggingface_hub库)、登录Huggingface以及使用git clone命令克隆模型和文件的详细步骤。
110 1
|
2月前
|
运维 网络协议 Linux
揭秘CentOS 7:系统目录奥秘大起底,网卡配置秒变高手,让你的服务器管理飞一般的感觉!
【8月更文挑战第5天】CentOS 7作为RHEL的社区版本,以其稳定性和丰富功能广受好评。本文通过案例分析介绍其系统目录结构及网卡配置方法。系统目录如/(根)、/bin(基本命令)、/boot(启动文件)、/dev(设备文件)、/etc(配置文件)、/home(用户目录)和/lib(共享库)等各司其职。网卡配置通过编辑/etc/sysconfig/network-scripts/下的ifcfg文件实现,如设置ens33接口的静态IP地址、子网掩码、网关和DNS服务器,并通过重启网络服务使配置生效。这是系统管理员必备的技能之一。
47 2
|
2月前
|
存储 Linux 网络安全
在CentOS 7上安装Git的方法
在CentOS 7上安装Git的方法
92 0
|
2月前
|
网络协议 Linux Shell
如何在运行Centos 6的虚拟服务器上安装cPanel
如何在运行Centos 6的虚拟服务器上安装cPanel
24 0
|
2月前
|
关系型数据库 MySQL Linux
在 CentOS 7 服务器上安装和保护 phpMyAdmin 与 Apache 的方法
在 CentOS 7 服务器上安装和保护 phpMyAdmin 与 Apache 的方法
45 0
|
2月前
|
Linux 数据安全/隐私保护
在CentOS 7服务器上添加和删除用户的方法
在CentOS 7服务器上添加和删除用户的方法
45 0
|
24天前
|
Cloud Native Java 编译器
将基于x86架构平台的应用迁移到阿里云倚天实例云服务器参考
随着云计算技术的不断发展,云服务商们不断推出高性能、高可用的云服务器实例,以满足企业日益增长的计算需求。阿里云推出的倚天实例,凭借其基于ARM架构的倚天710处理器,提供了卓越的计算能力和能效比,特别适用于云原生、高性能计算等场景。然而,有的用户需要将传统基于x86平台的应用迁移到倚天实例上,本文将介绍如何将基于x86架构平台的应用迁移到阿里云倚天实例的服务器上,帮助开发者和企业用户顺利完成迁移工作,享受更高效、更经济的云服务。
将基于x86架构平台的应用迁移到阿里云倚天实例云服务器参考
|
22天前
|
编解码 前端开发 安全
通过阿里云的活动购买云服务器时如何选择实例、带宽、云盘
在我们选购阿里云服务器的过程中,不管是新用户还是老用户通常都是通过阿里云的活动去买了,一是价格更加实惠,二是活动中的云服务器配置比较丰富,足可以满足大部分用户的需求,但是面对琳琅满目的云服务器实例、带宽和云盘选项,如何选择更适合自己,成为许多用户比较关注的问题。本文将介绍如何在阿里云的活动中选择合适的云服务器实例、带宽和云盘,以供参考和选择。
通过阿里云的活动购买云服务器时如何选择实例、带宽、云盘

热门文章

最新文章

下一篇
无影云桌面