일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 악성코드
- 리눅스
- 안철수
- C++
- KTS
- java
- 구글
- Eclipse
- Android
- 안드로이드 개발
- Android 4.1
- 안드로이드
- linux
- git
- ActiveX
- 개발
- ActiveMovieControl
- gradle
- 탐지기법
- mime
- build.gradle
- 자바
- 보안
- OOM
- kotlin
- 코틀린
- 노개북
- 하버드
- c
Archives
- Today
- Total
꿈소년의 개발 이야기
Java SIGBUS Error.. 본문
반응형
출처 : http://efod.se/blog/archive/2011/05/02/java-sigbus
자바 사용하다가 나타난 문제.
임시 폴더가 꽉차서 그렇다나?? ..;;
한참 있다가 다시 해보니 괜찮아지던데 정말 이거였나 보군.
Java SIGBUS - an unclear way of saying /tmp is full
I had the following happen for every new java process on one of my servers the other day:
server:~$ java # # A fatal error has been detected by the Java Runtime Environment: # # SIGBUS (0x7) at pc=0x00007f3e0c5aad9b, pid=17280, tid=139904457242368 # # JRE version: 6.0_24-b07 # Java VM: Java HotSpot(TM) 64-Bit Server VM (19.1-b02 mixed mode linux-amd64 compressed oops) # Problematic frame: # C [libc.so.6+0x7ed9b] memset+0xa5b # # An error report file with more information is saved as: # /home/user/hs_err_pid17280.log Segmentation fault
Turns out this is Java's way of telling you that the /tmp directory is full. It's trying to mmap some performance/hotspot-related file in /tmp which succeeds, but when it's trying to access this area, it will get the SIGBUS signal.
'Software Engineering' 카테고리의 다른 글
[tar] tar 사용법 (0) | 2012.08.01 |
---|---|
strncpy, strncat, snprintf (0) | 2012.05.31 |
VIM application 사용 및 활용 법에 대하여 (0) | 2012.03.21 |
net use 이용하여 Windows 공유 폴더 연결 접속 끊기. (0) | 2012.02.11 |
리눅스 메모리 사용량 확인하기. (0) | 2012.02.09 |