STUDY/Spring
localhost unauthorized
RUBY_루비
2020. 8. 20. 23:59
오류메세지
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
1. cmd 창에 netstat -ano
: 현재 실행 중인 목록이 나옴
2. 내가 사용중인 것은 8080 로컬 주소 이므로 이것의 pid를 기억한다
3. taskkill /pid 0000 /f
: 0000에 pid번호를 넣어서 명령어를 입력하면 프로세스가 종료된다
4. 만약 종료가 되지 않는다면 관리자 권한으로 cmd를 접속하자