728x90
반응형
개요
테스트 서버에 올리면서 에러 메세지로 톰캣을 여러번 실행시켜서 나는 에러메세지
에러메세지
Error: Exception thrown by the agent : java.rmi.server.ExportException: Port already in use: 1099; nested exception is:
java.net.BindException: Address already in use (Bind failed)
1099 Port가 이미 쓰여지고 있다.
해결
1. 터미널을 켜 원하는 포트를 찾는다. $ lsof -i :1099
2. PID를 찾아 그 번호를 죽여준다. $ kill -9 2557
3. 해결
반응형
'Error Log' 카테고리의 다른 글
[GitHub] git reset, git revert로 이전 커밋으로 되돌리기 (0) | 2022.06.28 |
---|---|
서버 통신 헤더를 이용한 웹 보안 대응 (0) | 2022.06.16 |
[Git Error] error: src refspec master does not match any 에러 (0) | 2021.07.26 |