RapidMiner Server installer not starting on a mac
INFO: ----------------- Started installer -----------------
Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter
at com.rapidminer.license.product.DefaultProduct.createBase64Representation(DefaultProduct.java:169)
at com.rapidminer.license.internal.DefaultLicenseManager.verifyProduct(DefaultLicenseManager.java:1073)
at com.rapidminer.license.internal.DefaultLicenseManager.registerProduct(DefaultLicenseManager.java:260)
at com.rapidminer.server.installer.license.LicenseManagerInitializer.initialize(LicenseManagerInitializer.java:31)
at com.rapidminer.server.installer.Starter.main(Starter.java:75)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
... 5 more
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
[Process completed]
Best Answer
-
Drhelp Member Posts: 17 Contributor IThank you for responding rfuentealba. Unfortunately, that didn't work for me. I got this back: Unable to find any JVMs matching version "1.8". But you rightly diagnosed the problem and gave me some ideas.
Though I had installed Java 8 before, typing "java -version" into the Terminal showed my system reckoned with Java 11. After checking possible other solutions and experimenting, the following worked for me:
1. Open the .bash_profile file (in TextEdit) on the mac.
For me, it seemed the file didn't exist based on what I got back on the Terminal. I'll come back to that later.
2. Edit the .bash_profile file with the following line: export JAVA_HOME='/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home'
3. Save the edited .bash_profile file
4. Open a new terminal window (and type java -version) to check. And the following confirm the change:java version "1.8.0_231"
Java(TM) SE Runtime Environment (build 1.8.0_231-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.231-b11, mixed mode)
As previously noted, there was a problem bringing up the .bash_profile file. I did the following to solve it:- Start up the Terminal.
- Type "cd ~/" to go to the home folder.
- Type "touch .bash_profile" to create new file.
- Type "open -e .bash_profile" to open it in TextEdit.
1
Answers