红联Linux门户
Linux帮助

Ubuntu 16.04上安装git-daemon

发布时间:2016-12-09 11:09:09来源:linux网站作者:fdl19881
Git-daemon-run 在 16.04上不能用起来,因为它依赖于runit, runit又依赖于upstart. 在 16.04版本里面,upstart被 systemd替代啦。
但可以使用另一个版本的 git-daemon: git-daemon-sysvinit.
 
使用命令:
sudo aptitude install git-daemon-sysvinit   
安装 git-daemon.
 
然后修改配置文件 /etc/default/git-daemon如下:
# Defaults for git-daemon initscript  
# sourced by /etc/init.d/git-daemon  
# installed at /etc/default/git-daemon by the maintainer scripts
#  
# This is a POSIX shell fragment  
#
#GIT_DAEMON_ENABLE=false  
GIT_DAEMON_ENABLE=true  
GIT_DAEMON_USER=gitdaemon  
#GIT_DAEMON_BASE_PATH=/var/lib  
GIT_DAEMON_BASE_PATH=/home/repo  
#GIT_DAEMON_DIRECTORY=/var/lib/git  
GIT_DAEMON_DIRECTORY=/home/repo
# Additional options that are passed to the Daemon.  
#GIT_DAEMON_OPTIONS=""  
GIT_DAEMON_OPTIONS="--export-all --enable=upload-pack --enable=upload-archive --enable=receive-pack --informative-errors"
 
然后重启服务:
sudo service git-daemon restart  
就可以了。
 
参考:
Ubuntu 16.04上安装git-daemon
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26740.html