봉봉의 개인 블로그
Java.net.BindException: Address already in use: bind 본문
문제상황
Java.net.BindException: Address already in use: bind
스프링 부터 웹 시작시 오류 발생하였다.
2016-05-17 15:05:07.917 ERROR 11048 --- [ main] o.a.coyote.http11.Http11NioProtocol : Failed to start end point associated with ProtocolHandler ["http-nio-8080"] java.net.BindException: Address already in use: bind at sun.nio.ch.Net.bind0(Native Method) ~[na:1.8.0_77] at sun.nio.ch.Net.bind(Unknown Source) ~[na:1.8.0_77] at sun.nio.ch.Net.bind(Unknown Source) ~[na:1.8.0_77] at sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source) ~[na:1.8.0_77] at sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source) ~[na:1.8.0_77] at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:340) ~[tomcat-embed-core-8.0.33.jar:8.0.33] ... (생략)
->다른 프로그램 8080 포트 를 사용중
해결방안
- 해당 스프링 부터 애플리케이션이 이미 실행중이면 중지
- 다른 프로그램을 끄거나, 포트변경 또는 스프링부트의 포트를 변경
'오류 리포트' 카테고리의 다른 글
Spring Mybatis Error 체크 (0) | 2017.07.19 |
---|---|
JSTL 사용시 주의사항 (0) | 2017.07.06 |
Maven import후 서버 시작이 안될때 (0) | 2017.07.06 |
오류 : 안드로이드 프로젝트를 옮긴후 실행할때 에러 (2) | 2017.06.22 |
Comments