Question
My program is compiled against libssl.so.10, but my Red Hat 8 system has a newer version. What should I do?
Asked by: USER7519
107 Viewed
107 Answers
Answer (107)
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.