Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- mongoDB
- Google Refund
- Packet Network
- draganddrop
- rpg server
- Unity IAP
- docker
- --watch
- Unity Editor
- Digital Ocean
- nodejs
- Google Developer API
- linux
- react
- SDK upgrade
- screencapture
- critical rendering path
- express
- unity
- OverTheWire
- spread 연산자
- server
- Camera Movement
- Git
- Camera Zoom
- java
- Spring Boot
- MySQL
- css framework
- springboot
Archives
- Today
- Total
우당탕탕 개발일지
[SVN] 기능정리 본문
SVN 저장소 생성 및 사용자 계정 추가하기
#svn에 admin으로 접속한다
ssh [adminName]@[xx.xx.xx] -p [portnum]
#저장소를 생성
svnadmin create [directoryName]
#해당 디렉토리로 이동, conf/svnserve.conf 파일 오픈
cd [directoryName]
vi conf/svnserve.conf
#다음 네 줄의 주석을 해제한다.
#주의할 점은 맨 앞에 공백을 제거해야한다. 그렇지 않으면 에러발생한다.
anon-access = read
anon-access = write
password-db= passwd
#해당 파일을 열어 계정정보를 입력한다.
vi conf/passwd
#username=password
'Server' 카테고리의 다른 글
서버에서 c# 프로그램 실행하기(2) (2) | 2023.08.13 |
---|---|
서버에서 c# 프로그램 실행하기 (2) | 2023.08.07 |
[MySQL] Master-Slave Replication (0) | 2023.07.13 |
[MySQL] Docker 에서 Access denied for user 'root'@'%' to ... 에러 (0) | 2023.07.11 |
[MySQL] docker 에서 MySQL 사용하기 (생성에서 매핑까지) (0) | 2023.07.07 |