我试图在本地设置中安装HortanWorks Ambari-Server,并且我遇到了Kafka客户端安装的问题。当我尝试设置群集时弹出以下错误。
resource_management.core.exceptions.ExecutionFailed: Execution of
'ambari-python-wrap /usr/bin/hdp-select set zookeeper-client 2.6.3.0-235'
returned 1. symlink target /usr/hdp/current/zookeeper-client for zookeeper
already exists and it is not a symlink.
如何解决此问题?我也查看过HDP问题讨论[1]但是那里给出的答案似乎对我不起作用。有人可以详细说明需要做些什么来纠正这个问题吗?
HDP讨论[1]
答案 0 :(得分:0)
错误是自解释的,它表示目录或文件/usr/hdp/current/zookeeper-client
已存在。因此,要解决问题,您需要删除目录或文件/usr/hdp/current/zookeeper-client
,然后创建正确的软链接。
mv /usr/hdp/current/zookeeper-client /usr/hdp/current/zookeeper-client_back
ln -s /usr/hdp/2.6.3.0-235/zookeeper /usr/hdp/current/zookeeper-client