svn 오류 반복메시지 – Store password unencrypted (yes/no)?
svn 오류 반복메시지 - Store password unencrypted (yes/no)? 증상 [crayon-67491f08839a8524662726/] 해결 [crayon-67491f08839b0026029792/] 해결 전 설정 해결 후 설정 확인 [crayon-67491f08839b4659207110/] ...
svn 저장소 command line 에서 생성방법
1. create – 2. 환경설정 – 3. 암호설정 – 4. 디렉토리 생성 – 5. 확인 – * 참고
step 1: create
1 2 3 4 |
root@debian:/mnt/samsung/svn/repository# svnadmin create ./PLC root@debian:/mnt/samsung/svn/repository# cd PLC/ root@debian:/mnt/samsung/svn/repository/PLC# ls README.txt conf db format hooks locks root@debian:/mnt/samsung/svn/repository/PLC# |
step 2: 환경설정
1 2 3 4 5 |
root@debian:/mnt/samsung/svn/repository/PLC# cd conf/ root@debian:/mnt/samsung/svn/repository/PLC/conf# ls authz passwd svnserve.conf root@debian:/mnt/samsung/svn/repository/PLC# vi conf/svnserve.conf root@debian:/mnt/samsung/svn/repository/PLC# |
step 3 : 암호 설정
1 2 3 4 5 6 7 8 9 |
### This file is an example password file for svnserve. ### Its format is similar to that of svnserve.conf. As shown in the ### example below it contains one section labelled [users]. ### The name and password for each user follow, one account per line. [users] # harry = harryssecret # sally = sallyssecret {user ID}={password} |
step 4 : 디렉토리 생성
1 2 3 |
svn mkdir svn://localhost/PLC/trunk svn mkdir svn://localhost/PLC/branchs svn mkdir svn://localhost/PLC/tags |
* 참고
root@debian:/mnt/samsung/svn/repository# svnadmin help
일반적인 사용법: svnadmin SUBCOMMAND REPOS_PATH [ARGS & OPTIONS …]
특정 부속 명령의 사용법을 위해서는 ‘svnadmin help ‘ 를 참조하십시오.
‘svnlook –version’으로 버전과 파일시스템 모듈을 볼 수가 있습니다.
가능한 하위 명령 목록:
crashtest
create
deltify
dump
help (?, h)
hotcopy
list-dblogs
list-unused-dblogs
load
lslocks
lstxns
pack
recover
rmlocks
rmtxns
setlog
setrevprop
setuuid
upgrade
verify
root@debian:/mnt/samsung/svn/repository# svnadmin create -h
create: 사용법: svnadmin create REPOS_PATH
REPOS_PATH 에 새로운 빈 저장소를 생성합니다.
옵션:
1 2 3 4 5 6 7 8 9 |
--bdb-txn-nosync : 트랜잭션을 커밋에서 fsync를 비활성화합니다[Berkeley DB] --bdb-log-keep : 자동 로그 파일 삭제를 비활성화 합니다 [Berkeley DB] --config-dir ARG : arg로 지정된 디렉토리에서 사용자 구성화일을 읽습니다 --fs-type ARG : 저장소 타입: 'fsfs' (기본값) 또는 'bdb' --pre-1.4-compatible : Subversion 1.4 버전 이전과 호환되는 포맷 이용 --pre-1.5-compatible : Subversion 1.5의 하위 버전과 호환되는 포맷 이용 --pre-1.6-compatible : Subversion 1.6 버전 이전과 호환되는 포맷 이용 |
svn 오류 반복메시지 - Store password unencrypted (yes/no)? 증상 [crayon-67491f08839a8524662726/] 해결 [crayon-67491f08839b0026029792/] 해결 전 설정 해결 후 설정 확인 [crayon-67491f08839b4659207110/] ...