mojira.dev
BDS-16913

Bedrock server won't start on Ubuntu 22.04 LTS

 

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

Comments 6

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:

echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list

sudo apt-get update
sudo apt-get install libssl1.1

If this works for you, show me some gratitude!

Still a problem on Minecraft 1.19.2.

they updated the curl libs on ubuntu 22.02 you will need to install the old ones

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

 

1.19.30 fixed this, I can start it and join the server on 22.04 without library errors.

migrated

(Unassigned)

Community Consensus

Retrieved