eclipse原来可以使用的好好的,装了多个版本的jdk后,打开eclipse出现An error has occurred. See the log file的问题,经过查找,可能原因之一是机子装了多于一个jdk,并且当前使用的这个jdk与eclipse使用的冲突导致,问题分析及其解决办法:1.使用如下命令查看机子装了多少个jdk:ls /Library/Java/JavaVirtualMachines例如,输入上述命令之后,可以看到我的机子当前装了下面三个: 当我切换到合适的jdk版本,ec…
原因是系统中安装了jdk9 导致的. 卸载jdk9就可以了 $ java -version Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp openjdk version "9-Debian" OpenJDK Runtime Environment (build 9-Debian+0-9b161-1) OpenJDK 64-Bit Server VM (build 9-Debian+0-9b161-1, mixed…
原文网址:http://coderlin.blog.51cto.com/7386328/1275215 方法1: 今天打开Eclipse的时候出现来了一个问题,导致了Eclipse打不开 错误的提示是: An error has occurred.See the log file 谷歌了一下,解决的办法是 删除eclipse的临时文件: eclipse/configuration 目录下的 org.eclipse.osgi org.eclipse.update 两个子目录重新启动 eclipse…
找到Myeclipse的安装包,双击它,会出现Uninstaller的按钮,单击卸载即可. 另,网上说,windows下cmd命令道myeclipse.exe 目录,然后执行myeclipse.exe -clean,然后再卸载,可能会成功,但是我试了不行.…
最近在启动eclipse时出现了“An Error has Occurred. See the log file”的错误,点击确定后也不能启动eclipse.查看log文件,出现类似: java.lang.ClassNotFoundException: javax.xml.parsers.SAXParserFactory at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPri…
Eclipse启动报错An internal error occurred during: "Initializing Java Tooling" 解决方案: 删除工作空间workspace\.metadata\.plugins\org.eclipse.core.resources\.projects文件夹(做好备份),然后重新启动Eclipse.…
报错内容: IDEA 启动报错 Internal error. Please report to http://jb.gg/ide/critical-startup-errors 报错图为: 我尝试找org/eclipse/xtext/xbase/lib/Exceptions的地方,没找到,百度了和Google不同的错误,我猜想有可能是本机的网络让jrebel识别不到因此报错,网络没问题,因此我解决的是: C:\Users%{用户}%.IntelliJIdea2018.3\config\plug…
eclipse启动报错,让查看.metadata\.log日志 eclipse启动不了,让查看.metadata\.log日志,上面为日志中的错误提示. 解决办法:删除 .metadata\.plugins\org.eclipse.e4.workbench 目录. (转:http://www.nbtarena.com/Html/soft/201309/2484.html) 我也遇到此问题,依上处理已解决:…
简述: Eclipse 启动时报错:Error when loading the SDK 错误信息: Error when loading the SDK: Error: Error parsing D:\android-sdk-windows\system-images\android-23\android-wear\armeabi-v7a\devices.xml cvc-complex-type.2.3.d:发现了以元素 'd:skin' 开头的无效内容.此处不应含有子元素. Error:…
遇到的eclipse启动报错问题解决 一.启动时出现Java was started but returned exit code=13 可能原因: 1.eclipse与JDK的不是都64位或者32位. 2.Eclipse.ini文件配置出错. 解决办法: 1.查看当前eclipse和jdk是否匹配.(在命令行中输入 java -version能看到JDK) 2.配置Eclipse.ini文件 在openFile和--launcher.appendVmargs之间添加: -vmC:\Progra…
centos6的kibana7.1无法启动报错 FATAL  Error: /lib64/libc.so.6: version `GLIBC_2.14' not found 升级glibc的问题处理 系统:centos6.10_x86_64 # kibana启动不了,报错:[root@:~]# tail -f /var/log/kibana/kibana.stderr  FATAL  Error: /lib64/libc.so.6: version `GLIBC_2.14' not found…
环境: ubuntu LTS 18.04.1 mysql Ver 14.14 Distrib 5.7.29, for Linux (x86_64) 初探 linux,按照如下安装完mysql sudo apt install mysql-server sudo apt install mysql-client sudo service mysql start 启动报错: ERROR 2002 (HY000): Can't connect to local MySQL server through…
nginx 启动报错“var/run/nginx/nginx.pid" no such file or directory 今天刚搭建的nginx服务器启动时,报错“var/run/nginx/nginx.pid" no such file or directory,按照他的意思我在var/run/新建了一个文件夹nginx,重新启动,启动成功. 但是当我虚拟机重启后依然报错“var/run/nginx/nginx.pid" no such file or directory…
安装eclipse: sudo apt-get install eclipse-platform 调整java: sudo update-alternatives --config java 启动: eclipse Error:An error has occurred. See the log file /home/rupali/.eclipse/org.eclipse.platform_3.7.0_155965261/configuration/1336830746877.log. 解决:…
公司突然停电,然后cm环境无法重启,报错 An error: (java.security.PrivilegedActionException: javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Clock skew too great (37) - PROCESS_TGS)]) occurr…
13.2 Spring Boot启动报错:Whitelabel Error Page 13.2 Spring Boot启动报错:Whitelabel Error Page 问题描述 Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Tue Mar 28 22:25:43 CST 2017 There was an unex…
今天进入hbase shell中输入命令报错:ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet 原因是由于hadoop的安全模式打开了,解决方法: hdfs dfsadmin -safemode leave 再重新启动HBase就可以了…
Spring Boot发布war包流程: 1.修改web model的pom.xml <packaging>war</packaging> SpringBoot默认发布的都是jar,因此要修改默认的打包方式jar为war 2.修改web model的依赖(dependency) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boo…
一.Spring Boot发布war包流程: 1.修改web model的pom.xml <packaging>war</packaging> SpringBoot默认发布的都是jar,因此要修改默认的打包方式jar为war 2.修改web model的依赖(dependency) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-b…
如图所示,我的Eclispe版本是Oxygen,启动的时候turnaround弹出这种错误. 多种情况会导致这种报错.通过[重置窗口布局],可解决大部分情况: 解决办法:点击菜单导航栏的Window -> Perspective -> Reset Perspective...  重置eclipse 页面 . 注意:网上主流方案是删除一个配置文件夹,会对原有项目有影响,建议:如果[重置窗口布局]无效,再尝试该方案. 网上主流方案: 一般认为不合理的关闭eclipse才发生的错误,删除当前工作目录…
自我总结,有什么需要纠正或更好的方案,请告知,谢谢! 最近上来看到好多同学都遇到了这个问题,之前我也好几次碰到这个问题,很是恼火,什么没干,eclipse一开电脑就卡死了,后来发现不管是新打开eclipse,还是修改代码后,eclipse右下角总会出现"building workspace...%",eclipse总会自动编译,占了很大的内存,所以需要把自动编译关掉. 主要原因是eclipse 启动时总是自动编译项目,而且每次修改了代码保存后,eclipse都会自动编译该项目,这样内存…
前几天还工作的好好的eclipse昨天下午启动时突然报错 报错如图: 妹的,好端端突然报错,非常奇怪,关键还是返回一堆看不懂的东西,细看都是eclipse.ini里面的配置信息,看到熟悉的jdk,误以为是jdk出错. 因为电脑是64位系统,查看了一下,启动的eclipse是32位的,看了一下eclipse.ini配置文件中-vm 对应的jdk也是另外装的一个32位的. 搜了下百度,有说jdk版本与eclipse不匹配的,刚刚已经排除了不是的.然后大部分就是说要在eclipse.ini里面指定-v…
启动 Eclipse 时,直接报错The JVM shared library "/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/../jre/lib/server/libjvm.dylib"does not contain the JNI_CreateJavaVM symbol. Unable to find any JVMs matching architecture "i386&qu…
由于安装elasticsearch5.x版本时需要jdk8,所以在本机安装了,不过后来发现启动eclipse时报错: Error: Registry key 'Software\JavaSoft\Java RuntimeEnvironment'\CurrentVersion' has value '1.7', but '1.8' is required. 根据提示修改了注册表中的CurrentVersion值为1.7 但是修改后依然报错,怎么回事呢?于是在网上找资料最后发现修改如下配置即可: 将…
电脑:2G内存,WIN7 32位. 启动adt-bundle-windows-x86-20140702\eclipse\eclipse.exe时,报错[Failed to create the Java Virtual Machine].点确定后,Eclipse自动关闭 解决方法如下: 修改Eclipse目录下的配置文件[eclipse.iniadt-bundle-windows-x86-20140702\eclipse\eclipse.ini] 将下面两个值改为原来的0.5倍,然后保存,重新启…
启动Eclipse的时候报错Java was started but returned exit code=13,这个错误的原因是由于eclipse版本与jdk版本不符导致的,可能你的eclipse是32位,jdk是64位.只要下载相对应版本的eclipse或者jdk都可以. 查看jdk版本可以在cmd控制台输入: java -d64 -version,如果是64位,就会显示java版本信息:如果不是64位,则会出现This Java instance does not support a 64…
准备要做java服务器,在安装开发环境时,启动Eclipse报错[Failed to load the JNI shared library jvm.dll] 研究了下,造成错误的原因是由于eclipse与jdk的不一致造成的. 我的开发环境是64位windows8 Pro,安装了64位jdk1.6,eclipse却粗物的安装了32位的版本,由于64位和32位匹配不一致,造成了以上错误的发生. 又尝试了一下,32位jdk+64位eclipse也会发生同样的问题. 好了,解决方法很简单,jdk和e…
前几天重新下了个eclipse,eclipse需要java环境才能运行起来,我当时电脑上自己装了jdk1.8,然后直接运行新下载的eclipse,说我的jvm版本是1.6,但是我不记得安装过1.6的了,我找了半天,才发现确实装了1.6,原来是之前用myeclipse时自动给我装的. 问题来了 1.eclipse启动时加载jvm,按照一定的顺序. eclipse启动时寻找jre的顺序 如果eclipse.ini中配置了-vm参数,那么则使用这个参数指定的JRE; 否则就去查看eclipse安装目录…
出现这个问题是因为断电前myeclipse还在运行,日志报错如下: !ENTRY org.eclipse.osgi 4 0 2017-07-24 08:29:48.485 !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (501). !STACK 0 org.osgi.framework.BundleException: Exception in org.ecl…
电脑:2G内存,WIN7 32位. 启动adt-bundle-windows-x86-20140702\eclipse\eclipse.exe时,报错[Failed to create the Java Virtual Machine].点确定后,Eclipse自动关闭 解决方法如下: 修改Eclipse目录下的配置文件[eclipse.iniadt-bundle-windows-x86-20140702\eclipse\eclipse.ini] 将下面两个值改为原来的0.5倍,然后保存,重新启…