linux以http方式搭建git服务器,即clone的方式为git clone http://xxxxxxxx。
用到apache和git-core(支持git的CGI)
1.安装httpd
yum install httpd
因为很多服务器本身就启动了80端口,所以修改监听端口:
vim /etc/httpd/conf/httpd.conf
// 找到 Listen 80修改为:
Listen 8081
启动(我这边启动提示:Redirecting to /bin/systemctl start httpd.service,就用/bin/systemctl start httpd.service):
service httpd start
打开浏览器访问:http://192.168.1.55:8081,如果访问不了,则是因为防火墙,解决:
非阿里云的设置:【
// 添加运行访问8081端口
iptables -A INPUT -p tcp --dport 8081 -j ACCEPT
// 重启保存
service iptables restart
/etc/rc.d/init.d/iptables save】
阿里云服务器的设置【
登录阿里云官网,进入服务器列表选择-》 更多--》网络和安全组--》安全组配置--》安全组列表--》配置规则
入方向 添加8081端口: 端口8081/8081 授权对象:0.0.0.0/0
重启阿里云服务器
】
2.安装git
yum install git
yum install git-core
创建仓库:
mkdir -p /opt/http_git/test.git
cd /opt/http_git/test.git
git init --bare
// 设置权限
chown -R apache:apache /opt/http_git
创建账号:
// testuser为账户名 可以随意定义
htpasswd -m -c /etc/httpd/conf.d/git-team.htpasswd testuser
// 修改git-team.htpasswd文件的所有者与所属群组
chown apache:apache /etc/httpd/conf.d/git-team.htpasswd
// 设置git-team.htpasswd文件的访问权限
chmod 640 /etc/httpd/conf.d/git-team.htpasswd
设置apache,使其请求转发到git-cgi:
vim /etc/httpd/conf/httpd.conf
cd /etc/httpd/conf.d
touch gitserver.conf
vim gitserver,conf
然后将如下内容拷贝到该文件里面,:wq! 退出
ServerName 192.168.1.55
<VirtualHost *:8081>
ServerName 192.168.1.55
SetEnv GIT_HTTP_EXPORT_ALL
SetEnv GIT_PROJECT_ROOT /opt/http_git
ScriptAlias /git /usr/libexec/git-core/git-http-backend/
<Location />
AuthType Basic
AuthName "Git"
AuthUserFile /etc/httpd/conf.d/git-team.htpasswd
Require valid-user
</Location>
</VirtualHost>
///
ServerName是git服务器的域名,这里最后填写你阿里云服务器远端的IP
/opt/http_git是代码库存放的文件夹
ScriptAlias是将以/git/开头的访问路径映射至git的CGI程序git-http-backend
AuthUserFile是验证用户帐户的文件
保存重启:
service httpd restart
3.客户端clone命令:
git clone http://192.168.1.55:8081/git/test.git
会提示输入账号密码,账号为上面设置的testuser
如果出现错误:fatal: Authentication failed for; 又不弹出输入账号密码咋办
在:控制面板\所有控制面板项\凭据管理器 下找到指定的git修改git的账号密码
windows 凭据-》普通凭据
如上面的ip是192.168.1.55:8081 对应看到:git:http://192.168.1.55:8081; 然后展开修改账号testuser,密码是你自己设置的
在仓库中新增库
cd /opt/http_git
git init --bare newtest.git
chmod 777 -R newtest.git
git clone http://192.168.1.55:8081/git/newtest.git