温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ambari安装hadoop页面问题

发布时间:2020-08-03 14:11:46 来源:网络 阅读:1850 作者:hiubuntu 栏目:大数据

卡在registering失败,查看日志发现registering前有报错:

INFO 2016-08-19 15:42:58,149 hostname.py:89 - Read public hostname \'hdp-data1\' using socket.getfqdn()
ERROR 2016-08-19 15:42:58,156 main.py:309 - Fatal exception occurred:
Traceback (most recent call last):
  File "/usr/lib/python2.6/site-packages/ambari_agent/main.py", line 306, in <module>
    main(heartbeat_stop_callback)
  File "/usr/lib/python2.6/site-packages/ambari_agent/main.py", line 297, in main
    ExitHelper.execute_cleanup()
TypeError: unbound method execute_cleanup() must be called with ExitHelper instance as first argument (got nothing instead)
', None)

这是因为ambari他吗是国外的,默认用的ascii编码,如果你用的中文版操作系统,可以在/usr/lib/python2.6/site-packages/ambari_agent/main.py 文件开头添加

import sys

reload(sys)

sys.setdefaultencoding('utf-8')

然后再retry failed就可以了

哈哈,相比别人重装系统,我还是比较机智的。


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI