Memo
이것 저것 메모용…
Published in
Mar 20, 2020
8080 port 사용 프로세스 Kill하기
발생 사례
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port.
해결 방법
- sudo lsof -i :8080
- sudo kill -9 “프로세스 번호”
- sudo kill -9 $(lsof -t -i:8080)
Git 명령어 모음
- https://medium.com/@pks2974/%EC%9E%90%EC%A3%BC-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-%EA%B8%B0%EC%B4%88-git-%EB%AA%85%EB%A0%B9%EC%96%B4-%EC%A0%95%EB%A6%AC%ED%95%98%EA%B8%B0-533b3689db81
- non-fast-forward 오류
https://m.blog.naver.com/sim4858/220924984480
Surefire
이메일
Git : Remote를 origin/master로 overriding
- git fetch — all
- git reset — hard origin/master
- git pull origin master