web-dev-qa-db-ja.com

実行中の「コアダンプの書き込みに失敗しました。コアダンプが無効になっています」エラーを修正する方法java

eclipseを使用してWebアプリケーションを開発していますが、Eclipse内からサーバーでアプリケーションを実行しようとすると問題が発生します。

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f41e4e610b0, pid=3463, tid=139924549404416
#
# JRE version: 7.0_09-b05
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.5-b02 mixed mode linux-AMD64 compressed oops)
# Problematic frame:
# C  [libwebkitgtk-1.0.so.0+0x11670b0]  void WTF::freeOwnedGPtr<_GdkEvent>(_GdkEvent*)+0x15e00
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.Sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

私はそれをググってみて、可能な解決策を見つけた here は次のことを示唆しています。問題は、この引数を追加する場所と追加方法がわからないことです。誰かがそれについて私を助けることができますか?

ありがとう。

編集:私のjdkを1.7_9から1.7_40に更新しましたが、問題はまだ残っています。

12
MoienGK

Linux mint 16では、解決策はEclipseテーマをGTKからClassicに変更し、Eclipse.iniに次のように記述することでした。

-Dorg.Eclipse.swt.browser.DefaultType=mozilla

11
postNuKe

このソリューションがすべての人に当てはまるかどうかはわかりませんが、EclipseをIndigoからkeplerに更新することで解決できました。

5
MoienGK

このエラーログは、Eclipse Marketplaceを開こうとしたときに受け取ったものと同じです。その後、Eclipseは単純に閉じました。私のOSはLinux Mint Derbianで、Eclipse Luna 4.4.1を使用しています。 Derbianのフォーラムでこのヒントを見つけたので、うまくいきました。 Re:Eclipse LunaがXFCEでクラッシュしました

次の行をEclipse/eclipse.inに追加します。

--launcher.GTK_version
2

それもあなたのために働くことを願っています。

2
Erick Alves

Erick Alves Answerが役立ちます。コードを追加します

--launcher.GTK_version 2

次に、私のEclipse.iniの下で動作します。

--launcher.library
plugins/org.Eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20140603-1326
-product
org.Eclipse.epp.package.cpp.product
--launcher.defaultAction
openFile
-showsplash
--launcher.GTK_version
2
org.Eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-startup
plugins/org.Eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
-vmargs
-Dosgi.requiredJavaVersion=1.7
-XX:MaxPermSize=256m
-Xms40m
-Xmx512m
1
user3514722