hortonworks 沙箱中 hue 的默认凭据

Default credentials for hue in hortonworks sandbox

我正在使用 Hortonworks 沙箱。我无法使用端口 8000 登录 hue,因为我不知道密码。有人可以告诉我 hue 的默认密码和用户名吗?

我在 hue 平台上的用户也遇到过同样的问题。正如这个 link 所说 http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.4/bk_installing_manually_book/content/configure_hue.html

By default, the first user who logs in to Hue can choose any username and password and gets the administrator privileges. This user can create other user and administrator accounts. User information is stored in the Django database in the Django backend

因此,对于用户管理,您必须与 Django 后端进行交互。更改用户 hue 的密码可以通过以下步骤完成:

  1. 登录到 hortonwork 沙箱

  2. 转到/usr/lib/hue(hue平台的基本目录)

  3. 在该目录中执行build/env/bin/hueshell(这将让您进入python控制台)

  4. 执行以下python代码:

    from django.contrib.auth.models import User
    user = User.objects.get(username='hue')
    user.set_password('admin')
    user.save()
    

这会将您的 hue 密码更改为管理员。可以在这个 link http://gethue.com/password-management-in-hue/

中找到更多信息

使用 ip 地址转到 Hortonworks 沙箱主页,然后单击 'close Advanced Options'。您会在那里找到所有默认凭据。