일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- expected at least 1 bean which qualifies as autowire candidate
- docker oracle12c
- Store password unencrypted
- grep
- ant
- WH question
- VirtualBox
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- svn 사용법
- svn dump
- NEXUS
- svn 변경된 파일 추출
- Oracle install
- svn update
- postgres install
- 포스트그레스 설치
- svn load
- docker 폐쇄망
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- Remmina
- Failed to download metadata for repo 'appstream'
- xrdp
- mysql dml
- svn log
- svn
- apt-get update 오류
- taskkill
- svn 특정 리비전 사이 추출
- svn commit
- javax.servlet.GenericFilter
- Today
- Total
목록SCM (형상관리) (34)
기억의 습작
svn 특정 리비전 사이에 있는 변경된 소스 파일 추출 (java and class) 변경된 파일(java) and class 추출 #!/bin/bash #./extract.sh 5 8 #------------------------------------------------------ VER1=$1 VER2=$2 WAS="was" SOURCE_FOLDER="/sw/inzi/scm/source/imageServerSource" DIFF="diff" OLD_PWD=$PWD if [ "${VER2}" == "" ] then echo "" echo " 2개의 파라미터가 필요합니다." echo " 1 parameter: 변경된 소스를 반영하기 위한 svn repository 번호 시작점" echo " 2 para..
$ docker start portainer Error response from daemon: oci runtime error: container with id exists: d5405983da1d1278db2fe0f69043143ce20374d39e3e4502588aa8857550da01 Error: failed to start containers: portainer 결론: 서버 reboot 하면 됨.
postman export로 출력된 v1.0대 postman.json 파일을 import 할때 하위 버전을 더이상 인식하지 못해아래과 같은 오류가 발생된다. 1 invalid import format(s) Postman Collection Format v1 is no longer supported and can not be imported directly. You may convert your collection to Format v2 and try importing again. 조치사항 아래 명령어 처럼 컨버터를 수행하면 v2.0 대로 변환할 수 있다. $ sudo apt install npm $ sudo npm install -g postman-collection-transformer $ postma..
Nexus 서버에 jar 라이브러리를 한번에 올리는 방법 .m2/repository 디렉토리를 압축해서 리눅스 서버에 업로드한다. mavenimport.sh 파일을 아래와 같이 만든다. #!/bin/bash # copy and run this script to the root of the repository directory containing files # this script attempts to exclude uploading itself explicitly so the script name is important # Get command line params while getopts ":r:u:p:" opt; do case $opt in r) REPO_URL="$OPTARG" ;; u) USERN..