一.安裝git
linux 做為伺服器端系統,windows 作為客戶端系統,分別安裝 git
1.服務端:
# yum install -y git
「」「安裝完成顯示如下
。。。。。。
installed:
git.x86_64 0:1.7.1-9.el6_9
dependency installed:
perl-error.noarch 1:0.17015-4.el6 perl-git.noarch 0:1.7.1-9.el6_9
complete!
」「」
檢視git版本
# git --version
git version 1.7.1
預設安裝就可以,安裝完後可以檢視版本。
$ git --version
git version 2.9.3.windows.2
二、服務端建立使用者
[root@localhost home]# id git
id: git:無此使用者
[root@localhost home]# useradd git # 設定使用者名稱
[root@localhost home]# passwd git # 設定使用者密碼
三、服務端建立git倉庫
[root@localhost home]# mkdir -p data/git/gittest.git
[root@localhost home]# git init --bare data/git/gittest.git # 將gittest.git檔案加設定成git倉庫
initialized empty git repository in /home/data/git/gittest.git/
[root@localhost home]# cd data/git/
[root@localhost git]# chown -r git:git gittest.git/ # 然後把 git 倉庫的 owner 修改為 git
四、客戶端clone遠端倉庫
1.自己選擇乙個位置建立本地倉庫的目錄樹,例如d:/wamp64/www/gittest_gitbash,並在git bash中進入。
dee@laptop-t7p9ov00 mingw64 ~
$ cd /d
dee@laptop-t7p9ov00 mingw64 /d
$ cd wamp64/www
dee@laptop-t7p9ov00 mingw64 /d/wamp64/www
$ cd gittest_gitbash/
leo@laptop-t7p9ov00 mingw64 /d/wamp64/www/gittest_gitbash
$
2.然後從 linux git 伺服器上 clone 專案:
$ git clone [email protected]:/home/data/gittest.git
3.如果ssh用的不是預設的22埠,則需要使用以下的命令(假設ssh埠號是7700)
$ git clone ssh:
the authenticity of host '192.168.56.101 (192.168.56.101)' can't be established.
rsa key fingerprint is sha256:ve6wv/sca059eqouozbfozdfmmh3b259nigfmvdadqq.
are you sure you want to continue connecting (yes/no)?
選擇 yes:
warning: permanently added '192.168.56.101' (rsa) to the list of known hosts.
此時 c:\users\使用者名稱\.ssh 下會多出乙個檔案 known_hosts,以後在這台電腦上再次連線目標 git 伺服器時不會再提示上面的語句。
後面提示要輸入密碼,可以採用 ssh 公鑰來進行驗證。
五、客戶端建立ssh公鑰和私鑰
$ ssh-keygen -t rsa -c "[email protected]"
此時 c:\users\使用者名稱\.ssh 下會多出兩個檔案 id_rsa 和 id_rsa.pub
id_rsa 是私鑰
id_rsa.pub 是公鑰
六、伺服器端git開啟rsa認證
rsaauthentication yes
pubkeyauthentication yes
authorizedkeysfile .ssh/authorized_keys
儲存並重啟 sshd 服務:
[root@localhost ssh]# /etc/rc.d/init.d/sshd restart
由 authorizedkeysfile 得知公鑰的存放路徑是 .ssh/authorized_keys,實際上是 $home/.ssh/authorized_keys,由於管理 git 服務的使用者是 git,所以實際存放公鑰的路徑是 /home/git/.ssh/authorized_keys
在 /home/git/ 下建立目錄 .ssh
[root@localhost git]# pwd
/home/git
[root@localhost git]# mkdir .ssh
[root@localhost git]# ls -a
. .. .bash_logout .bash_profile .bashrc .gnome2 .mozilla .ssh
然後把 .ssh 資料夾的 owner 修改為 git
[root@localhost git]# chown -r git:git .ssh
[root@localhost git]# ll -a
總用量 32
drwx------. 5 git git 4096 8月 28 20:04 .
drwxr-xr-x. 8 root root 4096 8月 28 19:32 ..
-rw-r--r--. 1 git git 18 10月 16 2014 .bash_logout
-rw-r--r--. 1 git git 176 10月 16 2014 .bash_profile
-rw-r--r--. 1 git git 124 10月 16 2014 .bashrc
drwxr-xr-x. 2 git git 4096 11月 12 2010 .gnome2
drwxr-xr-x. 4 git git 4096 5月 8 12:22 .mozilla
drwxr-xr-x. 2 git git 4096 8月 28 20:08 .ssh
七、將客戶端公鑰匯入服務端/home/git/.ssh/authorized_keys 檔案
回到 git bash 下,匯入檔案:
$ ssh [email protected] 'cat >> .ssh/authorized_keys' < ~/.ssh/id_rsa.pub
需要輸入伺服器端 git 使用者的密碼
回到伺服器端,檢視 .ssh 下是否存在 authorized_keys 檔案
[root@localhost git]# cd .ssh
[root@localhost .ssh]# ll
總用量 4
-rw-rw-r--. 1 git git 398 8月 28 20:08 authorized_keys
可以檢視一下是否是客戶端生成的公鑰。
重要:
修改 .ssh 目錄的許可權為 700
修改 .ssh/authorized_keys 檔案的許可權為 600
[root@localhost git]# chmod 700 .ssh
[root@localhost git]# cd .ssh
[root@localhost .ssh]# chmod 600 authorized_keys
八、客戶端再次clone遠端倉庫
$ git clone [email protected]:/home/data/git/gittest.git
檢視客戶端專案目錄:
專案已經 clone 了。
也可以使用 tortoisegit 客戶端來管理專案:
clone
九、禁止 git 使用者 ssh 登入伺服器
之前在伺服器端建立的 git 使用者不允許 ssh 登入伺服器
編輯 /etc/passwd
找到:
git:x:502:504::/home/git:/bin/bash
修改為
git:x:502:504::/home/git:/bin/git-shell
此時 git 使用者可以正常通過 ssh 使用 git,但無法通過 ssh 登入系統。
原文:在 linux 下搭建 git 伺服器
在虛擬機器上搭建自己的git倉庫
1.一台linux機器 2.安裝git yum y install git執行 git version出現如上圖所示表明安裝git 成功 3.建立git 使用者 注意這裡要用root使用者進行建立git使用者 useradd git給git設定密碼 passwd git建立成功切換到git使用者 s...
linux在虛擬機上安裝
file new virtual machine next e 開發工具 linux linuxrh4 as4 1.iso next 隨便填 next next 關閉執行 edit virtual machine settings 將用不上的刪除 cd ide floppy 軟盤 usb contr...
ceph 在虛擬機器上搭建ceph集群
本實驗利用三颱虛擬機器搭建ceph集群。環境 vmware ubuntu18.04 3 主機名與主機ip ceph node1 192.168.50.101 ceph node2 192.168.50.102 ceph node3 192.168.50.103 最後在三颱機器上都各部署乙個monit...