[spring boot]web server failed to start. port 8080 was already in use. spring boot 해결방법
lsof -i :8080 | grep LISTEN
java 80126 qstag 125u IPv6 0xaa073423037c1917 0t0 TCP *:http-alt (LISTEN)
이렇게 나온다..
그러면
kill -9 80126
'server' 카테고리의 다른 글
[ubuntu]timezone 설정방법 (0) | 2020.06.30 |
---|---|
[ubuntu]apt 설치방법 (0) | 2020.06.25 |
[spring boot]@requestparam null 허용방법 (1) | 2020.06.15 |
[spring boot]Not found in annotated query error with @Query 해결방법 (0) | 2020.06.12 |
[spring boot]is missing required source folder 'src/test/resources' 해결방법 (0) | 2020.06.12 |