温馨提示×

温馨提示×

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

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

Ambari启动hue报错

发布时间:2020-08-06 15:24:08 来源:网络 阅读:272 作者:BonnieJason 栏目:大数据

查看/usr/log/hue/error.log
发现如下问题

[24/Nov/2019 16:57:53 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue kt_renewer exited abnormally. Restarting it.
[24/Nov/2019 16:57:53 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue runcpserver exited abnormally. Restarting it.
[24/Nov/2019 16:57:54 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue runcpserver exited abnormally. Restarting it.
[24/Nov/2019 16:57:54 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue kt_renewer exited abnormally. Restarting it.
[24/Nov/2019 16:57:55 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue runcpserver exited abnormally. Restarting it.
[24/Nov/2019 16:57:55 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue kt_renewer exited abnormally. Restarting it.
[24/Nov/2019 16:57:56 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue kt_renewer has restarted more than 3 times in the last 3 seconds
[24/Nov/2019 16:57:56 ] supervisor   ERROR    Process /usr/lib/hue/build/env/bin/hue runcpserver has restarted more than 3 times in the last 3 seconds

分析:
1、/usr/lib/hue/build/env/bin/hue kt_renewer 执行这个报错
2、/usr/lib/hue/build/env/bin/hue runcpserver 执行这个报错

解决方法:
手动执行如上两个命令

[root@dev175 hue]# /usr/lib/hue/build/env/bin/hue kt_renewer
Traceback (most recent call last):
  File "/usr/lib/hue/build/env/bin/hue", line 12, in <module>
    load_entry_point('desktop==4.1.0', 'console_scripts', 'hue')()
  File "/usr/lib/hue/desktop/core/src/desktop/manage_entry.py", line 59, in entry
    execute_from_command_line(sys.argv)
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/core/management/__init__.py", line 399, in execute_from_command_line
    utility.execute()
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/core/management/__init__.py", line 392, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/core/management/__init__.py", line 261, in fetch_command
    commands = get_commands()
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/core/management/__init__.py", line 107, in get_commands
    apps = settings.INSTALLED_APPS
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/conf/__init__.py", line 54, in __getattr__
    self._setup(name)
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/conf/__init__.py", line 49, in _setup
    self._wrapped = Settings(settings_module)
  File "/usr/lib/hue/build/env/lib/python2.7/site-packages/Django-1.6.10-py2.7.egg/django/conf/__init__.py", line 132, in __init__
    % (self.SETTINGS_MODULE, e)
ImportError: Could not import settings 'desktop.settings' (Is it on sys.path? Is there an import error in the settings file?): No module named idna

发现提示No module named idna
手动安装这个module即可。
pip install idna
另外一个同理

向AI问一下细节

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

AI