turboflakes / crunch

Crunch is a command-line interface (CLI) and Matrix Bot to claim staking rewards every Era for Substrate-based chains
https://turboflakes.io
Apache License 2.0
64 stars 22 forks source link

libssl.so.1.1 library issue on Ubuntu 22.04.2 LTS #29

Closed alam807 closed 1 year ago

alam807 commented 1 year ago

The service fails to start with "/crunch-bot/crunch: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory...". Why am I getting this error? how do I fix this?

I am using [Crunch v0.9.3]

Cheers!

paulormart commented 1 year ago

Hi,

You could either build from source on your environment or try to install previous openssl version:

wget https://mirror.umd.edu/ubuntu/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
dpkg -i libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
alam807 commented 1 year ago

That was it! Thanks!