id
git# 檢視是否存在git使用者,存在就不建立了。
useradd
gitpasswd
git 輸入密碼,我設定的是***@123
vim /etc/ssh/sshd_config
rsaauthentication yes
pubkeyauthentication yes
authorizedkeysfile .ssh/authorized_keys
如果是centos7.4以上(含7.4),ssh1已經不支援了,只支援ssh2代協議。所以rsaauthentication項是沒有的
mkdir -p /data/git/gittest.git
# 初始化這個倉庫
cd /data/git/gittest.git
git init --bare .
# 目錄所屬使用者設定
chown -r git:git /data/git
mkdir localgit
cd localgit
git clone [email protected]:/data/git/gittest.git .
# 提示輸入服務端git賬戶的密碼。
#修改完就可以提交了
touch abc.txt
git add .
git commit -m 'aaa'
git push
伺服器搭建
問題一 com無法訪問到伺服器 問題二 將 com 301重定向到 www.com 解決方案 在httpd.conf檔案中 追加 如下內容 options followsymlinks rewriteengine on rewritecond com rewriterule l,r 301 2 禁止...
搭建伺服器
零基礎搭建伺服器 我用的是ubuntu,所有 sudo apt get install apache2 配置php的時候已經配好了,這裡就不重複配置了 安裝apxs 安裝過php,所以這個也忽略掉 sudo apt get install apache2 dev apxs是乙個為apache超文字傳...
伺服器搭建
1 系統centos yun update 公升級安裝包 2 通過yum install mysql mysql service 安裝mysql 更新 mysql service 安裝方法 wget rpm ivh mysql community release el7 5.noarch.rpm y...