
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
new installation and problem with zulu java
I'm trying to install
TOS_DI-20211109_1610-V8.0.1-windows-installer.exe
According with documentation, I first installed the java distributed version zulu18.28.13-ca-jdk18.0.0-win_x64.msi
I'm setting the JAVA_HOME and PATH correctly.
Starting the installer, I'm receiving a
There was an error.
Java must be version 1.8 or above. Java at JAVA_HOME: c:\Program files\Zulu\zulu-18 is not supported
I tried first several distribution of JDK 1.8... with the same bad result. I finally installed the recommended distribution... with the same bad result
C:\Users\...\Downloads>java -version
openjdk version "18" 2022-03-22
OpenJDK Runtime Environment Zulu18.28+13-CA (build 18+37)
OpenJDK 64-Bit Server VM Zulu18.28+13-CA (build 18+37, mixed mode, sharing)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The supported versions of Java are limited due to the number of third party Jars that are used. These all have differing supported versions of Java. The supported Java versions are found here for v8...
https://help.talend.com/r/en-US/8.0/installation-guide-open-studio-for-data-integration-windows/compatible-java-environments

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I tried using
zulu-11
zulu-18
zulu-8
Same bad result

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you configure and check your machine's JAVA environment variables before trying the install with JDKv11? If so, there is a ZIP version of the package. It doesn't need to be "installed" with a Windows executable. You can simply unpackage it into a location of your choice. This may work better for you.
If you require multiple versions of Java on your machine, you can use the method shown here to launch with your required JVM....
https://help.talend.com/r/en-US/8.0/installation-guide-open-studio-for-data-integration-linux/specify-another-jvm-to-launch-studio

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
But my java environnement is working fine
%JAVA_HOME%\bin is in the top of my %PATH%
C:\Program Files\Zulu\zulu-8>echo %PATH%
c:\Program Files\Zulu\zulu-8\bin\;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;c:\oracle\12.2.0\client\bin;c:\oracle\12.2.0\clientx64\bin;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\OpenText\Viewer\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Webex\Plugins;
JAVA_HOME is set
C:\Program Files\Zulu\zulu-8>echo %JAVA_HOME%
C:\Program Files\Zulu\zulu-8
Java executable is working fine
C:\Program Files\Zulu\zulu-8>java -version
openjdk version "1.8.0_322"
OpenJDK Runtime Environment (Zulu 8.60.0.21-CA-win64) (build 1.8.0_322-b06)
OpenJDK 64-Bit Server VM (Zulu 8.60.0.21-CA-win64) (build 25.322-b06, mixed mode)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You are using Java 8. Java 11 is required.
https://help.talend.com/r/en-US/8.0/installation-guide-open-studio-for-data-integration-windows/compatible-java-environments

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry. Same issue using java 11
C:\Users\FABCEL.000\Downloads>java -version
openjdk version "11.0.14.1" 2022-02-08 LTS
OpenJDK Runtime Environment Zulu11.54+25-CA (build 11.0.14.1+1-LTS)
OpenJDK 64-Bit Server VM Zulu11.54+25-CA (build 11.0.14.1+1-LTS, mixed mode)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
According to your PATH variable output above, your Java 8 path is specified first.....
c:\Program Files\Zulu\zulu-8\bin\;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;c:\oracle\12.2.0\client\bin;c:\oracle\12.2.0\clientx64\bin;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\OpenText\Viewer\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Webex\Plugins;
Did you replace that with Java 11 or did you just add Java 11 to the end? Also, it is preferable to point to the JDK's bin rather than the JRE's bin.
