LEAP 42.2 ARM Raspberry pi3 aarch64 - Mongodb-server installation error

How to resolve this dependency problem in mongodb-server installation?

Message:
Resolving packet dependencies …
Problem: nothing provides libcrypto.so.1.0.0 (OPENSSL_1.0.0) (64bit) it is necessary to mongodb-server-3.4.3-9.8.aarch64

I used the package in the openSUSE_Factory_ARM repository.

I’m not on a RPi,
But your SOP should be…

  1. Inspect similar packages available (may be only a minor version diff)
zypper se libcrypto.so
  1. Search for a package that provides the library
zypper se --provides libcrypto.so.1.0.0
  1. If you didn’t install openssl, do so
zypper in openssl
  1. Try the “cnf” command
cnf libcrypto.so.1.0.0
  1. Search for the file at https://software.opernsuse.org/search

Lastly, be aware that openssl has been patched for some fundamental vulnerabilities over the past year plus, which means that your apps today should all be upddated to patched versions of openssl. If any app or machine is still using unpatched versions of openssl, it’s likely the application will fail.

TSU