본문 바로가기

전체 글

(174)
[Tomcat] Eclipse에서 run on server이 안보이는 경우 ⌗ 해결 (1) 해당하는 Project에서의 Project property 접근 (2) Project property - Project facets : dynamic web module, java의 체크 여부 확인필요 (3) 체크가 되어있지 않으면, 체크 후 설정 저장 ※ maven과 Eclipse WTP 연동하기: http://javastore.tistory.com/111
[Warning] {Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server' did not find a matching property. ⌗ 경고 [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Example' did not find a matching property. 이클립스 Helios버전에 Tomcat 6.0.16부터 source라는 프로퍼티가 추가되었으나, WTP가 source라는 속성을 프로젝트의 context에 추가해서 발생하는 것. → 문제를 일으키지는 않는다고 합니다. ⌗ 해결 1) Eclipse에서 Tomcat서버 설정부분에서 Server Options에 있는 Publish module contexts to separate XML files를 체크. 2) 다시 톰캣을 재..
[Error] Archive for required library: 'C:/Users/xxx/.m2/repository/org/xxx.jar' cannot be read or is not a valid ZIP file ⌗ 오류현상 ⌗ 해결방법 해당하는 jar파일을 가져오지 못했거나, 혹은 네트워크등의 문제로 손상된 파일일 경우 발생. 1 ) 해당 저장소의 오류나는 폴더를 삭제. ⇢ C:/Users/xxxx/.m2/repository/org/slf4j/jcl-over-slf4j/1.6.6 2) Project > 우클릭 > Maven > Update Project 실행.
[Error] Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. ⌗ 오류 Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. ⌗ 원인 WAS가 이미 사용하려는 포트(8005, 8080, 8009)를 사용중이기 때문에 발생. ⌗ 해결 1) 다음과 같이 cmd창에서 사용하고 있는 PID를 확인. ☞ netstat -a -n -o -p tcp 2) cmd창에서 사용하고 있는 PID로 프로세스 종료. 3) 혹은 작업관리자(Ctrl + Alt + Delete)에 접근하여 사용하고 있는 PID에 할당된 서비스를 종료.
[Server] Port Address Port Address - 클라이언트가 서버한테 "정보 주세요"하며 필요한 번호가 있다. 그게 바로 Port 번호 ! - 모르는 대상에 대해 랜덤하다면 쉽게 찾기 어려우므로, 서버용 포트는 고정 되어있다. - 혹시나 클라이언트 포트가 고정되어 있다면 중복이 발생될 수 있으므로 dynamic port를 통해서 랜덤하게 나타낸다. client port : dynamic port server port : 개발 단계에서 미리 지정된 port를 사용하도록 정의함 ⌗ 스킴 (Shceme) 리소스를 취득하기 위한 방법 - port number : 프로그램과 프로그램 사이를 연결해주는 번호 Scheme name Port Address 설명 http 80 단순 통신 프로토콜 https 443 암호화된 http 통신을 나..
[Jenkins] Could not find tools.jar 오류 해결 방법 [ 설치 환경 ] Ubuntu : 16.04v Linux kernel : 4.9v ⌗ 오류 현상 * What went wrong: Execution failed for task ':compileJava'. > Could not find tools.jar. Please check that /usr/lib/jvm/java-8-openjdk-armhf contains a valid JDK installation. ⌗ 해결 방법 1. 설치된 Java 버전 확인 $ java -version openjdk version "1.8.0_222" OpenJDK Runtime Environment (build 1.8.0_222-8u222-b10-1ubuntu1~16.04.1-b10) OpenJDK Client VM (bu..
[Jenkins] Bitbucket Repository와 Jenkins 연동 (3) : Jenkins Plugin 이용 ↓↓ SSH Key 발급 ↓ ↓ https://chati.tistory.com/24 [Jenkins] Git Repository와 Jenkins 연동 (1) : SSH Key 생성 및 Git 설정 ↓↓ SSH Key 발급 및 git 설정 완료 후 Jenkins 설정 방법 ↓ ↓ https://chati.tistory.com/25 1. Jenkins가 구동되는 서버에 새로운 SSH Key(인증키) 생성 (1) 아래의 명령어를 실행. ⇢ -t 옵.. chati.tistory.com 1. Jenkins에서 Bitbucket에 대한 플러그인 설치 Jenkins 관리자 메인페이지 ⇢ Jenkins 관리 ⇢ Plugin Manager ⇢ 설치 탭 ⇢ 검색 2. Jenkins와 Bitbucket 연결 [참고 자료] ..
[Jenkins] Git Repository와 Jenkins 연동 (2) : Jenkins SSH Key 설정 ↓↓ SSH Key 발급 및 git 설정 방법 ↓ ↓ https://chati.tistory.com/24 [Jenkins] Git Repository와 Jenkins 연동 (1) : SSH Key 생성 및 Git 설정 ↓↓ SSH Key 발급 및 git 설정 완료 후 Jenkins 설정 방법 ↓ ↓ https://chati.tistory.com/25 1. Jenkins가 구동되는 서버에 새로운 SSH Key(인증키) 생성 (1) 아래의 명령어를 실행. ⇢ -t 옵.. chati.tistory.com 1. Jenkins에 SSH Key(인증키) 등록 (1) Jenkins 관리자 페이지 접속 → Credentials 클릭 → System 클릭 → Global credentials (unrestricted) ..

❥ CHATI Github