When Server tools is launched below error message is seen:
/usr/bin/curl: symbol lookup error: /lib64/libldap.so.2: undefined symbol: EVP_md2, version OPENSSL_3.0.0
Smarts - 24.3.13
It is due to Environment setting issue or library load issue due to which while executing the server tools from the console, its trying to find the symbol "EVP_md2" that is deprecated in OpenSSl 3.0.
As a workaround please specify LD_LIBRARY_PATH in server tool script like mentioned below:
LD_LIBRARY_PATH=/usr/lib64:LD_LIBRARY_PATH
export LD_LIBRARY_PATH
You can also add Smarts library path to above library path.
Note: libldap.so.2 library file is present under /usr/lib64 hence same path is added in LD_LIBRARY_PATH. Please verify the same before mentioning in the library path.