0


Cloudera Manager报错汇总

一、不良 : 该主机与 Cloudera Manager Server 失去联系的时间过长。 该主机未与 Host Monitor 建立联系。

原因:agent的uuid与注册到server的信息不一致

验证:查看uuid与mysql元数据库中注册HOST_IDENTIFIER是否一致

agent的uuid位置:/var/lib/cloudera-scm-agent/uuid

元数据库中HOST_IDENTIFIER位置:scm库HOSTS表

解决方法:

  1. 删除原uuid
rm -rf /var/lib/cloudera-scm-agent/uuid
  1. 重启agent
service cloudera-scm-agent restart 
  1. 查看新uuid
cat  /var/lib/cloudera-scm-agent/uuid
  1. 修改scm数据库中HOSTS表中的agent的uuid
update HOSTS set HOST_IDENTIFIER='${第三步查的uuid}' where HOST_ID=${有问题的agent};

二、不良 : 无法找到主机的 NTP 服务,或该服务未响应时钟偏差请求。

原因:1、未启动ntp。2、启动了ntp,但cm agent没有检测到。

解决方法:

1.启动ntp。

    systemctl start ntpd.service  
    systemctl enable ntpd.service  
    service ntpd status 

2.重启agent

service cloudera-scm-agent restart 

本文转载自: https://blog.csdn.net/weixin_57250068/article/details/129683309
版权归原作者 小饼干0612 所有, 如有侵权,请联系我们删除。

“Cloudera Manager报错汇总”的评论:

还没有评论