上一篇[原創: 雲服務器實戰系列4] 域名購買&解析vue
在[原創: 雲服務器實戰系列3] 基礎軟件安裝&環境配置中, 咱們已經完成了對Centos7中基礎的軟件環境搭建. 此時咱們將進行項目開始前的準備工做:git
打開Git bash, 輸入如下指令:sql
ssh-keygen -t rsa -C
複製代碼
此時, 會在~/.ssh/
目錄下生成一個默認的id_rsa.pub文件.shell
這裏省略了git的安裝過程, 相關安裝過程能夠參考: [原創: 雲服務器實戰系列3] 基礎軟件安裝&環境配置django
在雲服務器端執行如下操做後端
adduser git
複製代碼
cd /home/git
mkdir .ssh
複製代碼
chmod 700 .ssh
複製代碼
將.ssh文件夾權限設爲700, 即容許本用戶和root用戶擁有讀, 寫, 執行權限bash
touch .ssh/authorized_keys
chmod 600 .ssh/authorized_keys
複製代碼
cd /home
chown -R git:git git
複製代碼
chown git:git /usr/local/projects/*
複製代碼
若是但願git用戶不能登陸shell,就要修改git用戶的權限.服務器
vi /etc/passwd
複製代碼
將app
git:x:1000:1000::/home/git:/bin/bash
複製代碼
改成ssh
git:x:1000:1000::/home/git:/bin/git-shell
複製代碼
vi /home/git/.ssh/authorized_keys
複製代碼
將客戶端生成的公鑰文件id_rsa.pub
內容插入到authorized_keys
[account@yunServer projects]# git init --bare bt_django.git
Initialized empty Git repository in /usr/local/projects/bt_django.git/
[account@yunServer projects]# git init --bare ft_vue.git
Initialized empty Git repository in /usr/local/projects/ft_vue.git/
[account@yunServer projects]# dir
bt_django.git ft_vue.git
[account@yunServer projects]# chown -R git:git /usr/local/projects/*
複製代碼
James@James-PC MINGW64 /d/Projects
$ git clone git@120.x.x.1:/usr/local/projects/bt_django.git
Cloning into 'bt_django'...
warning: You appear to have cloned an empty repository.
James@James-PC MINGW64 /d/Projects
$ git clone git@120.x.x.1:/usr/local/projects/ft_vue.git
Cloning into 'ft_vue'...
warning: You appear to have cloned an empty repository.
複製代碼
詳細的步驟, 請閱[原創: 雲服務器實戰系列6] CentOS7 + Python3 + Django + Mysql部署環境搭建&django項目初始化
!未完, 待續!