how to fix “Failed to write core dump. Core dumps have been disabled” error while running java

后端 未结 4 1453
余生分开走
余生分开走 2020-12-06 11:22

i am using eclipse to develop a web application and i have encountered a problem when i am trying to run my application on server from within eclipse.

#
# A         


        
相关标签:
4条回答
  • 2020-12-06 11:40

    In linux mint 16, for me, the solution was change the eclipse theme from GTK to Classic and write in eclipse.ini this:

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

    0 讨论(0)
  • 2020-12-06 11:41

    The Erick Alves Answer works for me. I add the code

    --launcher.GTK_version 2

    then, below my eclipse.ini works.

    --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
    
    0 讨论(0)
  • 2020-12-06 11:46

    i don't know if this solution applies to every one or not, but i managed to solve this by updating my eclipse from indigo to kepler.

    0 讨论(0)
  • 2020-12-06 11:52

    This error log looks as mine that I received when I've tried to open the Eclipse Marketplace. The Eclipse simply closed after that. My OS is the Linux Mint Derbian and I'm working with Eclipse Luna 4.4.1. I found this tip on the Derbian's forum and it worked for me. Re: Eclipse Luna Crashed on XFCE

    I add the line to eclipse/eclipse.in:

    --launcher.GTK_version
    2
    

    Hope it works for you too.

    0 讨论(0)
提交回复
热议问题