java GLIBC 2 34 missing

java GLIBC 2 34 missing

If you are seeing an error message saying "GLIBC 2.34 missing" in Java, it means that your Java runtime is trying to use a version of the GNU C Library (GLIBC) that is not present on your system.

The GLIBC is a library of C functions that provides support for various system-level operations, such as input/output, memory allocation, and networking. It is used by many programs, including the Java runtime, to perform these operations.

The error message "GLIBC 2.34 missing" typically indicates that your Java runtime is compiled against a newer version of GLIBC than the one installed on your system. This can happen if you are trying to run a Java program compiled on a newer system on an older system that does not have the required version of GLIBC.

To fix this issue, you can try one of the following options:

  • Upgrade your system to a version that includes GLIBC 2.34 or newer.
  • Install the missing version of GLIBC manually.
  • Use a version of Java that is compiled against a version of GLIBC that is present on your system.

Note that installing or upgrading GLIBC can be a complex task, and it is recommended to consult with a system administrator or refer to the documentation for your system before attempting it.

Created Time:2017-11-03 22:21:06  Author:lautturi