【发布时间】:2018-09-10 23:12:14
【问题描述】:
我目前正在编写一个简单的基于 .NET Core 的客户端,用于通过 WebHCat 与 Hadoop 集群进行交互,我正在尝试弄清楚如何使用 SPNEGO 进行身份验证,就像在 curl 或 Powershell Core 中一样。
使用 Curl 我可以像这样查询 WebHCat 的状态端点:
curl "http://10.2.0.9:50111/templeton/v1/status" --negotiate -k -u :
同样的请求也可以在 Powershell Core 中执行:
$client = New-Object System.Net.WebClient;
$client.UseDefaultCredentials = $true;
$client.DownloadString("http://10.2.0.9:50111/templeton/v1/status");
但是,在与集群位于同一服务器上的 .NET Core 项目中运行以下内容时:
using System;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace testauth
{
class Program
{
static async Task Main(string[] args)
{
var host = "http://10.2.0.9:50111/templeton/v1/status";
var handler = new HttpClientHandler
{
UseDefaultCredentials = true,
AllowAutoRedirect = true,
};
using (var client = new HttpClient(new LoggingHandler(handler)))
{
var res = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, host));
}
}
}
}
我收到以下错误:
Unhandled Exception: System.ComponentModel.Win32Exception: GSSAPI operation failed with error - An invalid status code was supplied (Server not found in Kerberos database).
at System.Net.NTAuthentication.GetOutgoingBlob(Byte[] incomingBlob, Boolean throwOnError, SecurityStatusPal& statusCode)
客户端正在运行 .NET Core 2.1,正如this issue 中提到的那样,我应该能够将默认凭据传递给处理程序,它会按预期工作。
我也尝试过在 C# 中编写我在 PowerShell Core 中使用的相同代码,尽管代码相同,但仍会引发相同的错误?
我能提供的唯一其他细节是,Kerberos 连接到只有一个用户的 Active Directory 实例,并且所有这些请求都是在使用 kinit 创建该用户的票证之后运行的。
【问题讨论】:
标签: c# hadoop active-directory ldap kerberos