I tried installing SQL Server on my Ubuntu 22.04 and it failed. One of the errors was:
/opt/mssql/bin/sqlservr: error while loading shared libraries: liblber-2.5.so.0: cannot open shared object file: No such file or directoryCreated symlink /etc/systemd/system/multi-user.target.wants/mssql-server.service → /lib/systemd/system/mssql-server.service.
I want to install libldap-2.5-0 package manually, using this source
I run
sudo apt-get updatesudo apt-get install libldap-2.5-0
that's the output I get:
sebastian@seb-linux-azure:~$ sudo apt-get updateHit:1 http://azure.archive.ubuntu.com/ubuntu focal InReleaseHit:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InReleaseHit:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InReleaseHit:4 http://azure.archive.ubuntu.com/ubuntu focal-security InReleaseHit:5 https://packages.microsoft.com/ubuntu/22.04/mssql-server-2022 jammy InReleaseReading package lists... Donesebastian@seb-linux-azure:~$ sudo apt-get install libldap-2.5-0Reading package lists... DoneBuilding dependency treeReading state information... DoneE: Unable to locate package libldap-2.5-0E: Couldn't find any package by glob 'libldap-2.5-0'E: Couldn't find any package by regex 'libldap-2.5-0'
Is there a different way of installing that package?