Android
Eclipse 실행시 Failed to create the Java Virtual Machine 메시지 발생
엔젤루스
2010. 10. 14. 23:35
728x90
반응형
Eclipse를 실행시 Failed to create the Java Virtual Machine 란 에러가 발생할 때가 있습니다. 이 에러가 발생했을 때 해결 방법은 다음과 같습니다.
eclipse가 설치되어 있는 폴더에 들어가면 eclipse.ini 파일이 있습니다.
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
128M <----- 256m 에서 128m으로 수정
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
128m <----- 256m 에서 128m으로 수정
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
다음과 같이 수정하고 다시 이클립스를 실행시키면 제대로 돌아가는 것을 확인 할 수 있습니다
728x90
반응형