gpt4 book ai didi

hue - hortonworks 沙箱中 hue 的默认凭据

转载 作者:行者123 更新时间:2023-12-02 08:23:09 29 4
gpt4 key购买 nike

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

最佳答案

我在 hue 平台上的用户遇到了同样的问题。正如此链接所说 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/hue shell(这将让您进入 python 控制台)

  4. 执行以下python代码:

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

这会将您的 hue 密码更改为 admin。可以在此链接中找到更多信息 http://gethue.com/password-management-in-hue/

关于hue - hortonworks 沙箱中 hue 的默认凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34854369/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com