使用curl启用GSS-Negotiate

时间:2015-08-17 09:44:12

标签: php curl single-sign-on

我有以下问题。

操作系统:CentOS 6.6

PHP:5.5

卷曲:编译7.43

当我执行“curl -V”时,我得到以下内容:

curl 7.43.0 (x86_64-unknown-linux-gnu) libcurl/7.43.0 OpenSSL/1.0.1e zlib/1.2.3 libidn/1.18 libssh2/1.0 nghttp2/1.2.1-DEV
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp 
Features: Debug TrackMemory IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz HTTP2 UnixSockets

我需要的是支持“GSS-Negotiation”,但无论我尝试什么,都不会出现在功能列表中。

我做错了什么?

例如,在另一台使用CentOS 6.4的服务器上,它运行正常: 卷曲-V

curl 7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.14.0.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2
Protocols: tftp ftp telnet dict ldap ldaps http file https ftps scp sftp 
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz

我正在为我的项目使用SSO,其目的是将凭据发送到API。

1 个答案:

答案 0 :(得分:-1)

您有两个单独的cURL版本,每个服务器一个。要升级,有几个选项:

  1. downloading the source code
  2. 自行构建更新版本
  3. 使用命令行中的yum进行升级:

    yum clean all
    yum install libcurl
    
  4. 选项1可能是更好的选择,因为您可以精确控制构建中包含的模块。