1

我正在尝试使用 Impyla 连接到远程服务器(Server1)上的 impala。我可以使用以下命令从本地连接和查询 Server1:

from impala.dbapi import connect
import impala.util

conn = connect(host=my_impalad, port = 21050, auth_mechanism = 'GSSAPI', use_ssl = True)

但是,当我在尝试连接到 Server1 的 Server2 上尝试相同的行时,出现以下错误

thriftpy.transport.TTransportException: TTransportException(type=1, message='Could not start SASL: 
b\'Error in sasl_client_start (-1) SASL(-1): generic failure: GSSAPI Error: Unspecified GSS failure.  
Minor code may provide more information (Cannot find KDC for realm "_________")\'')

为什么这发生在 Server2 上而不是我的本地?不应该都是相对于 Server1 的吗?

4

0 回答 0