Under linux SVN server set up

Machine environment:

yum source is equipped with Ali cloud (gcc *, per * which I have already have them)

#yum -y install sunbversion

# Svnadmin --version View SVN version

#mkdir -p / svn / repos / td create the repository path (td is my project name is the name of the library)

#svnadmin create / svn / repos / td Create Repository

#cd / svn / repos / td / conf to modify the configuration file inside

#vi / svn / repos / td / conf / authz at the bottom Add Permissions

#vi / svn / repos / td / conf / passwd, password, adding users below

#vi /svn/repos/td/conf/svnserve.conf the following lines to unlock comment

anon-access = read
auth-access = write

password-db = passwd

authz-db = authz

# Netstat -anlp | grep svnserve View SVN occupied port number

# Firewall-cmd --permanent --add-port 3690 / tcp Add this firewall port

#snvserve -d -r / svn / repos / SVN server start

#ps -ef | grep / svn * to see whether the process exists

At this point in the local browser you can enter: svn: created //192.168.43.130/td before you can access the repository

 

 

 

Guess you like

Origin blog.csdn.net/kehana/article/details/91966932