themattman / mongodb-raspberrypi-binaries

Unofficial MongoDB Community Edition Binaries for Raspberry Pi
Other
119 stars 10 forks source link

libcrypto.so.1.1 #2

Closed houshangaziziaccelleran closed 1 year ago

houshangaziziaccelleran commented 1 year ago

Hi I get:

houshang@houshang-desktop:~$ /home/houshang/mdb-binaries/mongod --dbpath /data/db/ts_test_db --fork --logpath /data/db/ts_test_db_log --port 28080 /home/houshang/mdb-binaries/mongod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory houshang@houshang-desktop:~$ /home/houshang/mdb-binaries/mongod --port 28080 /home/houshang/mdb-binaries/mongod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory houshang@houshang-desktop:~$

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

MongoDB (please complete the following information):

Raspberry Pi Device (please complete the following information):

Compilation Machine (please complete the following information):

Additional context Add any other context about the problem here.

themattman commented 1 year ago

Hi @houshangaziziaccelleran,

Can you clarify which release you are using? I could not reproduce this issue with the latest r6.0.7 release on a clean install of 64-bit Raspberry Pi OS Desktop. Please fill out as many fields in the template to get a better answer.

760ceb3b9c0ba4872cadf3ce35a7a494 commented 1 year ago

i think recent versions of ubuntu dont ship libssl v1.1 anymore which mongodb depends on. you can fix this by installing the debian version

wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1n-0+deb11u5_arm64.deb
dpkg -i libssl1.1*.deb
rgillan commented 1 year ago

the libssl install above solved our same issue on Ubuntu 23/RPi 4 thank you.

Lefuneste83 commented 10 months ago

FYI on a Raspberry Pi 5 with latest bookworm Raspberry Pi OS, I can just do "apt install libssl1.1" to go through the error message.