일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- svn 특정 리비전 사이 추출
- javax.servlet.GenericFilter
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- ant
- xrdp
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- 포스트그레스 설치
- taskkill
- svn 사용법
- Failed to download metadata for repo 'appstream'
- svn update
- docker oracle12c
- Remmina
- docker 폐쇄망
- svn load
- VirtualBox
- apt-get update 오류
- Oracle install
- WH question
- svn
- postgres install
- Store password unencrypted
- NEXUS
- mysql dml
- expected at least 1 bean which qualifies as autowire candidate
- grep
- svn dump
- svn log
- svn 변경된 파일 추출
- svn commit
- Today
- Total
목록전체 글 (189)
기억의 습작
특정파일명(war파일)을 제외한 나머지 모두 삭제 # find . ! -name ‘*.war’ -delete 서비스 등록(mysql) sudo apt-get install sysv-rc-conf sysv-rc-conf --list mysql service mysql start 파일 카피 옵션 -f 강제복사 -p 원본 파일의 소유주,그룹,권한,시간 정보들이 그대로 보존되어 복사됨. -u (hp-ux에서는 안먹힘)복사할 대상이 이미 있는데 , 이 파일이 변경 날짜가 같거나, 더 최근의 것이면 복사하지 않는다.
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..