일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- springboot 3.0.0
- OperationalError
- docker
- AWS
- docker-compose
- depends_on
- 재귀함수가 뭔가요
- github
- 우아한 테크코스 2차 합격
- MySQL server on 'db' (115)
- 2차 코딩테스트
- AWS S3
- 프로그래머스
- TypeError: 'property' object is not iterable
- python
- DB
- METACLASS
- classmethod
- EC2
- Spring
- S3
- 갓재석
- github skyline
- javascript
- depends
- classproperty
- 우아한테크코스 2차
- python all testcode
- 코딩테스트
- Django
Archives
hanbin.dev
[Spring] There is insufficient memory for the Java Runtime Environment to continue. 본문
겪었던 오류
[Spring] There is insufficient memory for the Java Runtime Environment to continue.
hanbindev 2021. 2. 14. 00:39EC2 인스턴스에서 Spring boot jar을 실행하자 There is insufficient memory for the Java Runtime Environment to continue. 라는 에러가 검출되었다.
충분한 메모리가 확보되지 않았다는 것인데, 순간 떠올린 방법은 두가지였다
1. EC2의 메모리를 확장시킨다 (t3.micro 보다 큰)
2. -Xmx 와 같은 옵션으로 메모리를 직접 할당해준다.
1번은 돈이 나가기 때문에 포기했고, 2번을 하려고 했을때, 이전에 실행해둔 프로세스가 생각이 나서 출력을 해보았다.
> ps aux
알고보니 이전에 실행해둔 프로세스 때문에 메모리가 부족한 것이었다. 그래서 ec2 인스턴스를 재부팅 해서 해결했다.
'겪었던 오류' 카테고리의 다른 글
[Django] 변경사항이 없어도 makemigrations가 가능한 오류 (0) | 2021.03.17 |
---|---|
[Spring] travis ci로 자동 배포 하던 도중 변경사항 적용 안됨 (0) | 2021.02.16 |
[AWS] Permission denied (publickey,gssapi-keyex,gssapi-with-mic) (0) | 2021.02.13 |
[Spring] Execution failed for task ':test'. There were failing tests. See the report at: file: ... (0) | 2021.02.09 |
[IntelliJ] cannot find symbol ... (0) | 2021.01.31 |