Redhat 6 git服务器配置 (git-daemon)
Posted 瞎折腾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redhat 6 git服务器配置 (git-daemon)相关的知识,希望对你有一定的参考价值。
git-daemon是按照git的自己的git协议进行访问git服务
1.git-daemon软件安装
软件仓库见 redhat 6 git 服务器 配置 (http)
2.配置git daemon
git daemon有默认功能是直接依附在inetd上工作的
编辑
/etc/xinetd.d/git
service git
{
disable = no
# git is in /etc/services only on RHEL5+
#type = UNLISTED
#port = 9418
socket_type = stream
wait = no
user = nobody
server = /usr/libexec/git-core/git-daemon
server_args = --base-path=/var/www/git --export-all --user-path=public_git --syslog --inetd --verbose
log_on_failure += USERID
# xinetd does not enable IPv6 by default
# flags = IPv6
}
disable改成no
base-path切换成 git仓库所在的路径 /var/www/git
3.配置防火墙
编辑/etc/sysconfig/iptables
添加下面两项
-A OUTPUT -p tcp --dport 9418 -m state --state NEW,ESTABLISHED -j ACCEPT
-A INPUT -p tcp --sport 9418 -m state --state ESTABLISHED -j ACCEPT
-A INPUT -p tcp --sport 9418 -m state --state ESTABLISHED -j ACCEPT
或者使用system-config-firewall-tui开放9418端口
4.重启xinetd服务
service xinetd restart
至此就可以适应使用git访问了git clone git://server/XXXX.git了
注:
需要对仓库进行push操作的话
需要设定仓库的daemon.receivepack属性为true,如下
cd XXX.git
git config --file config daemon.receivepack true
参考资料:
man git-daemon
以上是关于Redhat 6 git服务器配置 (git-daemon)的主要内容,如果未能解决你的问题,请参考以下文章