无法使用kerberos将knime连接到cloudera集群

时间:2018-09-24 09:43:27

标签: kerberos cloudera knime

我正在将Cloudera(5.12)集群与kerberos结合使用, 我无法通过Tableau(和另一个DataViz)的keytab连接到hdfs 但是,当我尝试使用HDFS Connection(使用knit -kt ...之后)的Knime(3.6)时,我得到的knime的键表为:

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
main()
{

char input[23];
int sum;
int power;
int base;
int val;
int len;
gets(input);
strupr(input);
scanf("%d",&base);
len=strlen(input);
power=len-1;
for(int x=0;x<len;x++,power--)
{
        val=input[x]-48;
        if(val>9)
        val-=7; 
        sum+=val*pow(base,power);
}
printf("%d",sum);
}

但是他无法连接到群集(超时):

2018-09-24 11:22:57,820 : DEBUG : SwingWorker-pool-6-thread-7 : UserGroupUtil : HDFS Connection : 0:3 : Returning Kerberos user: qoe_fixe_consult@SONAR.NMS.LD (auth:KERBEROS)

0 个答案:

没有答案