我正在尝试通过Fedora框对照Windows 2008 Server对LDAP进行身份验证。
以下代码适用于命令行(打印“成功”):
if($ldap = ldap_connect('10.0.0.101'))
{
ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3);
$bind = ldap_bind($ldap,'administrator@domain.tld','XXXXXXX');
print ldap_error($ldap);
}
...通过Apache / mod_php拉出相同的文件打印“无法联系LDAP服务器”
我见过很多关于此类问题的报告,但没有关于如何解决问题的有用信息。
答案 0 :(得分:7)
我刚刚在centos6上与这个问题进行了长时间的斗争。 php.ini差异似乎是一个值得检查的好地方,但它没有给我答案。事实证明这与SELinux有关。
$ getsebool -a | grep httpd
allow_httpd_anon_write --> off
allow_httpd_mod_auth_ntlm_winbind --> off
allow_httpd_mod_auth_pam --> off
allow_httpd_sys_script_anon_write --> off
httpd_builtin_scripting --> on
httpd_can_check_spam --> off
httpd_can_network_connect --> off
httpd_can_network_connect_cobbler --> off
httpd_can_network_connect_db --> on
httpd_can_network_memcache --> on
httpd_can_network_relay --> off
httpd_can_sendmail --> off
httpd_dbus_avahi --> on
httpd_enable_cgi --> on
httpd_enable_ftp_server --> off
httpd_enable_homedirs --> off
httpd_execmem --> off
httpd_manage_ipa --> off
httpd_read_user_content --> off
httpd_run_stickshift --> off
httpd_setrlimit --> off
httpd_ssi_exec --> off
httpd_tmp_exec --> off
httpd_tty_comm --> on
httpd_unified --> on
httpd_use_cifs --> off
httpd_use_gpg --> off
httpd_use_nfs --> off
httpd_use_openstack --> off
httpd_verify_dns --> off
你会注意到,在我的情况下,httpd_can_network_connect被设置为关闭。这是SELinux中的布尔值,可以使用以下命令进行调整。
$ setsebool -P httpd_can_network_connect on
您可以在显式使用apache和ldap的http://wiki.centos.org/TipsAndTricks/SelinuxBooleans中了解更多相关信息。希望它有所帮助!
答案 1 :(得分:1)
您可能遇到此问题,因为Apache有一个php.ini
文件而CLI
可能有另一个,而Apache版本可能没有启用LDAP
扩展名。
尝试在两种环境中检查php.ini
正在加载phpinfo()
:
<?php print phpinfo(); ?>
您应该看到php.ini
的路径和其他有用信息:
Configuration File (php.ini) Path => /etc/php5/cli
Loaded Configuration File => /etc/php5/cli/php.ini
Scan this dir for additional .ini files => /etc/php5/cli/conf.d
查看CLI
上加载的配置的另一种方法是使用php
参数调用-i
:
$ php -i | grep 'php.ini'
Configuration File (php.ini) Path => /etc/php5/cli
Loaded Configuration File => /etc/php5/cli/php.ini