`
rensanning
  • 浏览: 3509685 次
  • 性别: Icon_minigender_1
  • 来自: 大连
博客专栏
Efef1dba-f7dd-3931-8a61-8e1c76c3e39f
使用Titanium Mo...
浏览量:37404
Bbab2146-6e1d-3c50-acd6-c8bae29e307d
Cordova 3.x入门...
浏览量:603960
C08766e7-8a33-3f9b-9155-654af05c3484
常用Java开源Libra...
浏览量:677498
77063fb3-0ee7-3bfa-9c72-2a0234ebf83e
搭建 CentOS 6 服...
浏览量:86981
E40e5e76-1f3b-398e-b6a6-dc9cfbb38156
Spring Boot 入...
浏览量:399561
Abe39461-b089-344f-99fa-cdfbddea0e18
基于Spring Secu...
浏览量:68981
66a41a70-fdf0-3dc9-aa31-19b7e8b24672
MQTT入门
浏览量:90291
社区版块
存档分类
最新评论

搭建 CentOS 6 服务器(14) - CVS、SVN、Git

 
阅读更多
(一)CVS
安装xinetd
# rpm -q xinetd
# yum install xinetd
# chkconfig xinetd on
# /etc/init.d/xinetd start


安装CVS
# rpm -q cvs
    cvs-1.11.23-15.el6.x86_64 (CentOS自带)
# yum install cvs


创建用户
# groupadd cvsgroup
# useradd -G wheel,cvsgroup cvsuser
# passwd cvsuser


设置
# mkdir /usr/local/cvsrepo
# cd /usr/local/cvsrepo
# cvs init
# chown -R root:cvsgroup /usr/local/cvsrepo
# chmod –R 775 /usr/local/cvsrepo

# touch /etc/xinetd.d/cvs
# vi  /etc/xinetd.d/cvs
    service cvspserver
    {
        disable                 = no      # <-
        port                    = 2401
        socket_type             = stream
        protocol                = tcp
        wait                    = no
        user                    = root
        passenv                 = PATH
        server                  = /usr/bin/cvs
        env                     = HOME=/usr/local/cvsrepo
        server_args             = -f --allow-root=/usr/local/cvsrepo pserver
    }
# chmod 644 /etc/xinetd.d/cvs
# /etc/init.d/xinetd restart


确认
# cvs -d ':pserver:root@localhost:/usr/local/cvsrepo' login
# cvs -d ':pserver:root@localhost:/usr/local/cvsrepo' logout


(二)SVN
安装
# yum list | grep "^subversion"
# cd /usr/local/src
# wget http://apache.fayea.com/subversion/subversion-1.8.13.tar.gz
# tar -zxvf subversion-1.8.13.tar.gz
# cd subversion-1.8.13
# ./configure --prifix=/usr/local/svn
# make
# make install
# svnserve --version


设置
# mkdir -p /usr/local/svndata
# svnadmin create /usr/local/svndata/myproj/
# cd /usr/local/svndata/myproj/
# ls -l
# cd conf
# ls -l
# vi svnserve.conf
    [general]
    anon-access = none
    auth-access = write
    password-db = /usr/local/svndata/myproj/conf/passwd
    authz-db = /usr/local/svndata/myproj/conf/authz
# vi passwd
    [users]
    username=password
# vi authz
    [groups]
    project_p = pm
    
    [project:/]
    @project_p = rw
    * =


启动服务
# svnserve -d -r /usr/local/svndata/myproj/


停止服务
# ps -aux|grep svnserve
# kill -9 ID号


确认
# svn co svn://localhost/myproj


(三)Git
安装
# yum list | grep "^git"
# cd /usr/local/src
# wget https://www.kernel.org/pub/software/scm/git/git-2.3.2.tar.gz
# tar -zxvf git-2.3.2.tar.gz
# cd git-2.3.2
# ./configure
# make
# make install
# git --version


设置
# touch /etc/xinetd.d/git-daemon
# vi /etc/xinetd.d/git-daemon
    service git
    {
        disable         = no      # <-
        socket_type     = stream
        wait            = no
        user            = nobody
        server          = /usr/libexec/git-core/git-daemon
        server_args     = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
        log_on_failure  += USERID
    }
# /etc/init.d/xinetd restart


创建repository
# mkdir -p /var/lib/git/public_git/test.git/
# cd /var/lib/git/public_git/test.git/
# git --bare init --shared
# groupadd gitgroup
# usermod -G wheel,gitgroup gituser
# passwd gituser
# chown -R gituser:gitgroup /var/lib/git/


客户端确认
# cd /home/gituser/src
# mkdir test
# cd test
# echo "Git Test." > test.txt
# git init
# git add test.txt
# git commit -m "First Commit"
# git remote add test ssh://gituser@localhost:56722/var/lib/git/public_git/test.git
# git push origin master

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics