I have a RHEL 8.3 installation. It comes with openssl.x86_64 1:1.1.1g-11.el8.
However the MariaDB 10.5.7 Galera needs libssl and libcrypto 1.0.0.
ldd libgalera_smm.so
ldd: warning: you do not have execution permission for `./libgalera_smm.so'
linux-vdso.so.1 (0x00007ffd7fbd4000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fe012886000)
librt.so.1 => /lib64/librt.so.1 (0x00007fe01267e000)
libssl.so.1.0.0 => not found
libcrypto.so.1.0.0 => not found
How can I install openssl 1.0.0 without breaking the existing openssl 1.1.1?
TIA