My program is compiled against libssl.so.10, but my Red Hat 8 system has a newer version. What should I do?

Responsive Ad Header

Question

Grade: Education Subject: Support
My program is compiled against libssl.so.10, but my Red Hat 8 system has a newer version. What should I do?
Asked by:
107 Viewed 107 Answers

Answer (107)

Best Answer
(332)
If you have a newer version of `libssl` installed (e.g., libssl.so.1.1 or later), you need to either recompile your program against the newer version of OpenSSL or use the `LD_LIBRARY_PATH` environment variable to point to the location of the `libssl.so.10` library. The latter approach should be considered a temporary workaround.