php7安装ldap扩展
EricSanchez 2018-03-27 16:22:35 5055 收藏
文章标签: php ldap centos 添加扩展 编译安装
版权
进入之前编译安装php包中
cd ~/php7.2.3/ext/ldap
/server/php7/bin/phpize
./configure --with-php-config=/server/php7/bin/php-config --with-ldap
出错信息I
configure: error: Cannot find ldap.h
解决方法
yum install -y openldap openldap-devel
出错信息II
configure: error: Cannot find ldap libraries in /usr/lib
解决方法
cp -frp /usr/lib64/libldap* /usr/lib/
继续执行
./configure --with-php-config=/server/php7/bin/php-config --with-ldap
之后
make && make install
安装完成后
修改php配置文件,将extension=ldap.so前的分号去掉,保存退出
并重启php-fpm
/etc/init.d/php-fpm restart
查看安装是否成功
php -m