1-2. linux svn 설정
·
linux/svn
// svn 저장소 생성 # svnadmin create --fs-type fsfs TestStore1 # chmod -R g+ws TestStore1 // 저장소 설정 TestStore1/conf/svnserve.conf 수정 # vi TestStore1/conf/svnserve.conf // 비로그인 접속 권한 read, write, none anon-access = read // 로그인 접속권한 read, write, none auth-access = write // 비밀번호 관리할 파일 password-db = passwd // 파일 디렉토리 접근 권한 관리할 파일 authz-db = authz // 인증 시 보여주는 간단한 저장소 설명 (생략 가능) realm = My First Reposito..
1-1. linux-centos-svn 설치
·
linux/svn
//svn 설치 유무 # rpm -qa | grep subversion //svn 설치 가능한 리스트 # yum list subversion //svn 설치 # yum install -y subversion //svn 저장할 폴더 생성 # cd / # mkdir svn_repos //svn 저장소 설정 # vi /etc/sysconfig/svnserve # OPTIONS is used to pass command-line arguments to svnserve. # # Specify the repository location in -r parameter: OPTIONS="--threads --root /svn_repos" //svn 방화벽 설정 # sudo firewall-cmd --permanent -..