Ich bin auf dieses Problem gestoßen, als ich versucht habe, PHP-Erweiterungen in einen Docker-Container einzubinden. Folgendes musste ich tun:
apt-get install libldb-dev libldap2-dev
ln -s /usr/lib/x86_64-linux-gnu/libldap.so /usr/lib/libldap.so \ && ln -s /usr/lib/x86_64-linux-gnu/liblber.so /usr/lib/liblber.so
Das hat bei mir perfekt funktioniert.
LDAP-Bibliotheken installieren:
apt-get install libldb-dev
Erstellen Sie SO-Linker-Dateien:
updatedb --prunepaths=/mnt
cd /usr/lib
if [ ! -L liblber-2.4.so.2 ];
then
ln -s "$(locate liblber-2.4.so.2)"
fi
if [ ! -L liblber-2.4.so.2.8.3 ];
then
ln -s "$(locate liblber-2.4.so.2.8.3)"
fi
if [ ! -L liblber.so ];
then
ln -s "$(locate liblber.so)"
fi
if [ ! -L libldap.so ];
then
ln -s "$(locate libldap.so)"
fi
if [ ! -L libldap_r.so ];
then
ln -s "$(locate libldap_r.so)"
fi
PHP konfigurieren:
./configure --with-ldap=/usr
Der sauberste Weg, dies zu tun, ist laut diesem Kommentar in den Ausgaben des offiziellen PHP-Docker-Image die Verwendung von libldap2-dev
(in Debian/Ubuntu) und Aufruf von configure
mit --with-libdir=lib/x86_64-linux-gnu
.