728x90

 

Several ports (8005, 8009) required by (서버명) are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s). 

=> was 재시작을 위한 포트가 이미 사용중인 경우이다. 포트를 사용하고 있는 pid를 확인하여 강제 종료해야한다.

 

 

//포트 사용중인 서비스 확인

netstat -a -n -o -p tcp  


//해당 pid 서비스종료

taskkill /f /pid 4444

 

 

Reference

 

http://myblog.opendocs.co.kr/archives/1702

 

 

 

728x90
728x90
경 고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Example' did not find a matching property.


이클립스 Tomcat 6.0.16부터 source라는 프로퍼티가 추가되었음

WTP가 source라는 속성을 프로젝트의 context에 추가해서 발생하는 것으로(참고) 문제를 일으키지는 않음




이 문제를 해결하려면 Eclipse에서 Tomcat서버를 더블클릭해서 설정부분의 Server Options에 있는 Publish module contexts to separate XML files를 체크한 뒤에 다시 톰캣을 구동하면 경고메시지가 사라짐

 

 

 

Reference

https://blog.outsider.ne.kr/559

 

728x90

+ Recent posts