I have already installed subversion in CentOs machine :
yum install subverion
--svn
--svn--repositories
-------repositories--REP
---------------------REP--confsvnserve.confThis file holds the key configuration stuff such as:
anon-access = read
auth-access = write
password-db = passwd
realm = MDRThus we use the passwd file to store passwords for users. To change authorisation rules then uncomment the authz property and use the authz file. To get the whole show running I made a shell script called startSVN as follows
svnserve -d -r /home/svn/repositories &which I run that using Nohup command:
nohup ./startSVN &
Nohup simply enables the ability to leave the terminal window without the process stopping
No comments:
Post a Comment