반응형
1. 문제
jenkins에서 build를 수행할때 아래와 같은 에러가 발생할 수 있다.
2. 원인
jenkins server의 memory가 부족해서이다. 내 linux server의 메모리는 아래의 명령어로 확인할 수 있다.
command
free -h
3. 해결
swap memory를 지정하면 된다. 아래의 명령어를 순서대로 실행한다.
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
출처 : https://gdtbgl93.tistory.com/117
추천서적
파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음
반응형
'ERROR' 카테고리의 다른 글
[ERROR] Jenkins Build Fail - Starting a Gradle Daemon, 2 busy Daemons could not be reused, use --status for details (0) | 2020.09.14 |
---|---|
[ERROR] linux /dev/null permission denied (0) | 2020.09.14 |
[ERROR] jenkins shutdown window (0) | 2020.09.11 |
[ERROR] Is the docker daemon running? (0) | 2020.09.11 |
[ERROR] Jenkins Permission denied sudo: no tty present and no askpass program specified (0) | 2020.09.11 |