Centos6.6 to install the Subversion service, centos6.6 installation tutorial

Source: Internet
Author: User

Centos6.6 to install the Subversion service, centos6.6 installation tutorial

I. Introduction

Subversion is short for svn server, used to host code, similar to git

1) Centos6.6

2) Subversion

 

Ii. Installation

yum -y install subversion

 

Iii. Configuration

$ vi /etc/init.d/svnserve#!/bin/bash## svnserve        Startup script for the Subversion svnserve daemon## chkconfig: - 85 15# description: The svnserve daemon allows access to Subversion repositories \#              using the svn network protocol.# processname: svnserve# config: /etc/sysconfig/svnserve# pidfile: /var/run/svnserve.pid#### BEGIN INIT INFO# Provides: svnserve# Required-Start: $local_fs $remote_fs $network# Required-Stop: $local_fs $remote_fs $network# Short-Description: start and stop the svnserve daemon# Description: The svnserve daemon allows access to Subversion#   repositories using the svn network protocol.### END INIT INFO# Source function library.. /etc/rc.d/init.d/functionsif [ -f /etc/sysconfig/svnserve ]; then        . /etc/sysconfig/svnservefiexec=/usr/bin/svnserveprog=svnservepidfile=${PIDFILE-/var/run/svnserve.pid}lockfile=${LOCKFILE-/var/lock/subsys/svnserve}directory=${DIRECTORY-/var/subversion}args="--daemon --pid-file=${pidfile} --root=${directory} $OPTIONS"[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$proglockfile=/var/lock/subsys/$progstart() {    [ -x $exec ] || exit 5    [ -f $config ] || exit 6    echo -n $"Starting $prog: "    daemon --pidfile=${pidfile} $exec $args    retval=$?    echo    if [ $retval -eq 0 ]; then        touch $lockfile || retval=4    fi    return $retval}stop() {    echo -n $"Stopping $prog: "    killproc -p ${pidfile} $prog    retval=$?    echo    [ $retval -eq 0 ] && rm -f $lockfile    return $retval}restart() {    stop    start}reload() {    restart}force_reload() {    restart}rh_status() {    # run checks to determine if the service is running or use generic status    status -p ${pidfile} $prog}rh_status_q() {    rh_status >/dev/null 2>&1}case "$1" in    start)        rh_status_q && exit 0        $1        ;;    stop)        rh_status_q || exit 0        $1        ;;    restart)        $1        ;;    reload)        rh_status_q || exit 7        $1        ;;    force-reload)        force_reload        ;;    status)        rh_status        ;;    condrestart|try-restart)        rh_status_q || exit 0        restart        ;;    *)        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"        exit 2esacexit $?$ mkdir -p /var/subversion$ cd /var/subversion/$ svnadmin create repos$ cd repos$ vi conf/svnserve.conf[general]anon-access = noneauth-access = writepassword-db = passwdauthz-db = authz#realm = /var/subversion/repos[sasl]$ vi conf/passwd [users]kaiwen01 = kaiwen01kaiwen02 = kaiwen02kaiwen03 = kaiwen03$ vi conf/authz[groups]develop = kaiwen01,kaiwen02java = kaiwen03[repos:/]@develop=rw[repos:/permit]@java = rw* = r

 

Iv. Run

 

$ chkconfig svnverve on$ /etc/init.d/svnverve start

 

5. Check

$ ps aux|grep svnserve$ netstat -ntlp|grep svnserve

 

# Default 3690 Port

 

 

Vi. Client running test

 

# Check out

 

 

 

 

# Submit

 

 

 

 

VII. Others (a script for automatically creating a project is attached, but it must be placed in the current folder of the project to be created)

$ vi /var/subversion/svncreate.sh#!/bin/bash#read -p "Project Name: " namessvnadmin create $namescat >$names/conf/svnserve.conf<<EOF[general]anon-access = noneauth-access = writepassword-db = passwdauthz-db = authz[sasl]EOFcat >$names/conf/passwd <<EOF[users]${names} = ${names}-pass${names} = ${names}-passEOFcat >$names/conf/authz <<EOF[groups]develop = ${names},${names}[$names:/]@develop=rwEOF

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.