Informix

Informix

Connect with Db2, Informix, Netezza, open source, and other data experts to gain value from your data, share insights, and solve problems.

 View Only
  • 1.  Java Version for Informix Installation

    Posted Fri January 30, 2026 12:00 PM

    Just an FYI for which java versions to use.  It's a bit frustrating having to reinstall java 8 just to get the licensing installed (also a waste of time to figure out).

    IBM Informix Dynamic Server Version 14.10.FC11WE you can use Java 11 or 8
    IBM Informix Dynamic Server Version 14.10.FC11WE License must use Java 8.  Using Java 11 install fails with Error: An unexpected error occurred while trying to open file we_edition.jar

    Fix packs 14.10.12 and 14.10.13 must use Java 11



    ------------------------------
    Daniel Karwatka
    ------------------------------


  • 2.  RE: Java Version for Informix Installation

    Posted 13 days ago

    Hello Daniel... I'm facing with that about informix 14.10.FC13 installation... I want to update from informix1410FC11 to 1410FC13 but I don't know how to specify in the ids_install the JAVA_HOME to point java11 without desinstall java 8 because 1410FC11 is using it... do you know how to specify the path?



    ------------------------------
    Tatiana Flores
    ------------------------------



  • 3.  RE: Java Version for Informix Installation

    Posted 13 days ago

    export the java path into PATH environment variable, then use java -version to verify 



    ------------------------------
    ke chen
    ------------------------------



  • 4.  RE: Java Version for Informix Installation

    Posted 13 days ago

    It does depend upon the your Java installation.  Some OS versions will allow the installation of multiple different java versions and they have a command that will point to your default version.

    If you install your own version of Java like the Zulu OpenJDK from Azul, you can install multiple versions in /opt and then create a symbolic file link to point to the version you want to use.

    Steps: Set JAVA_HOME, install your java versions, create link to the version you need.

    Example:

    Set JAVA_HOME to /opt/java.

    Install zulu8.90.0.19-ca-jdk8.0.472-linux_x64 and zulu11.84.17-ca-jdk11.0.29-linux_x64

    To link to Java8 run: ln -s  /opt/zulu8.90.0.19-ca-jdk8.0.472-linux_x64 /opt/java

    To link to Java11 run: ln -s  /opt/zulu11.84.17-ca-jdk11.0.29-linux_x64 /opt/java

    ls -al /opt     (shows link to java 11)

    lrwxrwxrwx 1 root     root      36 Jan 20 14:37 java -> zulu11.84.17-ca-jdk11.0.29-linux_x64/
    drwxr-xr-x 1 root     root     146 Oct  4  2025 zulu11.84.17-ca-jdk11.0.29-linux_x64/
    drwxr-xr-x 1 root     root     236 Oct  4  2025 zulu8.90.0.19-ca-jdk8.0.472-linux_x64/

    As you install different versions of OpenJDK you only need to change the link to point to the newer version.

    Note:  You may need to recompile custom UDRs after changing the java version on a running system.



    ------------------------------
    Daniel Karwatka
    ------------------------------



  • 5.  RE: Java Version for Informix Installation

    Posted 13 days ago
    Hello Tatiana,
    You can run ids installation command with LAX_VM option where you need to provide path to your java jre, e.g.
     /home/informix/inst/ids_install LAX_VM /home/informix/java/jdk-11.0.30+7-jre/bin/java

    BR
    Jiri






  • 6.  RE: Java Version for Informix Installation

    Posted 11 days ago

    Very thanks. It works fine!



    ------------------------------
    Tatiana Flores
    ------------------------------