Error: JRE libraries are missing or not compatible in SPS
search cancel

Error: JRE libraries are missing or not compatible in SPS

book

Article ID: 224390

calendar_today

Updated On:

Products

SITEMINDER CA Single Sign On Agents (SiteMinder) CA Single Sign On Secure Proxy Server (SiteMinder)

Issue/Introduction

 

When running the installer for SPS 12.8SP4 upgrade, this one ends unexpectedly returning the error :

    # sh ca-proxy-12.8-sp04-linux-x86-64.bin
    
    Preparing to install
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...

    Launching installer...

    JRE libraries are missing or not compatible....
    Exiting....

 

Environment

 

CA Access Gateway (SPS) 12.8SP4 on RedHat 7;

 

Cause

 

The /tmp directory is mounted with the option "noexec", which doesn't allow the execution of binaries.

The mount command reports:

  # mount
  tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noexec,relatime)

Resolution

 

  • Ensure you have the root permissions, and remount the /tmp directory with exec permissions:
    # mount -o remount,exec /tmp

    or without direct root access:
    # sudo mount -o remount,exec /tmp

    Once the installation and configuration are done, set the noexec permissions back by running this command as root:
    # mount -o remount /tmp

    or without direct root access:
    # sudo mount -o remount /tmp
  • Without having root permissions, get in touch with the system administrator to mount the /tmp folder with the execution (exec) permission.