The dedicated bedrock server fails to start with an error about libssl
./bedrock_server: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
I think this may be because Ubuntu now ships with OpenSSL 3.0.2
Linked issues
is duplicated by 2
Comments 6
Impish has been EOLed, so you will need to grab the file from Focal:
echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
sudo apt update && sudo apt install libssl1.1
If you installed impish (the first comment), you will need to remove that file, install focal, then update and install.
sudo rm /etc/apt/sources.list.d/impish-security.list
echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
sudo apt-get update
sudo apt-get install libssl1.1
Im getting this on Ubuntu too, it appears they updated the OpenSSL Version, Please fix
EDIT: I was able to resolve myself using the following commands:
If this works for you, show me some gratitude!