The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Could you help me !!! . I can't install rapidminer on my linux os
Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter
at com.rapidminer.license.verification.JarVerifier.createPublicKey(JarVerifier.java:270)
at com.rapidminer.license.verification.JarVerifier.<clinit>(JarVerifier.java:140)
at com.rapidminer.launcher.GUILauncher.main(GUILauncher.java:287)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
... 3 more
at com.rapidminer.license.verification.JarVerifier.createPublicKey(JarVerifier.java:270)
at com.rapidminer.license.verification.JarVerifier.<clinit>(JarVerifier.java:140)
at com.rapidminer.launcher.GUILauncher.main(GUILauncher.java:287)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
... 3 more
0
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornGoogling the error message gives this: https://askubuntu.com/questions/695560/assistive-technology-not-found-awterror1
Answers
Dortmund, Germany
problem.
I'm using RapidMiner Studio on different Linux distributions without problems. Can you enter the following command and post the output?
java -version
Here is what it writes on my computer:
$ java -version
openjdk version "1.8.0_222"
OpenJDK Runtime Environment Corretto-8.222.10.1 (build 1.8.0_222-b10)
OpenJDK 64-Bit Server VM Corretto-8.222.10.1 (build 25.222-b10, mixed mode)
OpenJDK 1.8 is a good version to use. I use the Amazon Corretto version on this computer and OpenJDK from Debian Testing on a different one. You will also need the package openjfx.
Regards,
Balázs
openjdk version "17" 2021-09-14
OpenJDK Runtime Environment (build 17+35-Ubuntu-120.04)
OpenJDK 64-Bit Server VM (build 17+35-Ubuntu-120.04, mixed mode, sharing)
that version doesn't seem to be compatible with current RapidMiner.
Can you install openjdk-8-jdk or openjdk-8-jre on your computer and retry?
Regards,
Balázs
openjdk version "1.8.0_292"
OpenJDK Runtime Environment (build 1.8.0_292-8u292-b10-0ubuntu1~20.04-b10)
OpenJDK 64-Bit Server VM (build 25.292-b10, mixed mode)
[sudo] password for nutthakun:
nutthakun@nutthakun-MS-7C09:~/Downloads/rapidminer-studio$ ./RapidMiner-Studio.sh
RAPIDMINER_HOME is not set. Trying the directory '/home/nutthakun/Downloads/rapidminer-studio'...
Nov 10, 2021 12:47:34 AM com.rapidminer.tools.PlatformUtilities logInfo
INFO: Searching in Java classpath for RapidMiner Studio jars...
Nov 10, 2021 12:47:34 AM com.rapidminer.tools.PlatformUtilities logInfo
INFO: Trying parent directory of '/home/nutthakun/Downloads/rapidminer-studio/lib/rapidminer-studio-core-9.10.1.jar'...
Nov 10, 2021 12:47:34 AM com.rapidminer.tools.PlatformUtilities logInfo
INFO: Gotcha! 'rapidminer.home' is: /home/nutthakun/Downloads/rapidminer-studio
Nov 10, 2021 12:47:34 AM com.rapidminer.tools.PlatformUtilities logInfo
INFO: Release platform: ANY
Nov 10, 2021 12:47:35 AM com.rapidminer.gui.safemode.SafeMode launchStarts
INFO: Found left-behind lock file from last startup at /home/nutthakun/.RapidMiner/safeMode.lock.
Exception in thread "main" java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper
at java.awt.Toolkit.loadAssistiveTechnologies(Toolkit.java:807)
at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:886)
at javax.swing.ImageIcon.<init>(ImageIcon.java:198)
at javax.swing.ImageIcon.<init>(ImageIcon.java:217)
at com.rapidminer.gui.tools.SwingTools.<clinit>(SwingTools.java:344)
at com.rapidminer.gui.safemode.SafeModeDialog.showSafeModeDialog(SafeModeDialog.java:82)
at com.rapidminer.gui.safemode.SafeMode.askForSafeMode(SafeMode.java:85)
at com.rapidminer.gui.safemode.SafeMode.launchStarts(SafeMode.java:54)
at com.rapidminer.gui.RapidMinerGUI.main(RapidMinerGUI.java:965)
at com.rapidminer.launcher.GUILauncher.main(GUILauncher.java:330)
nutthakun@nutthakun-MS-7C09:~/Downloads/rapidminer-studio$
I'm so thank you Mr.Martin and Mr.Balázs to help me.