Hi all, just finished deploying Datahub v0.9.2 and...
# troubleshoot
g
Hi all, just finished deploying Datahub v0.9.2 and I’m noticing that the
datahub
admin user is missing the following permissions:
Copy code
managePolicies: false
manageUserCredentials: false
Any ideas what might be causing that? Thanks!
b
Hi Steven. There should be a policy called "Root User - All Platform Privileges". Is that there?
g
Thanks for the reply, John. I’m getting the following when I try to go to the Users & Groups page.
The
MANAGE_POLICIES
and
MANAGE_USER_CREDENTIALS
seem to be set correctly in the database, but when I go to the “Manage Users & Groups” page, I get an error because
managePolicies: false
and
manageUserCredentials: false
is returned from the
getMe
GraphQL request.
Copy code
{
  "actors": {
    "resourceOwners": false,
    "allUsers": false,
    "allGroups": false,
    "users": [
      "urn:li:corpuser:datahub"
    ]
  },
  "privileges": [
    "MANAGE_POLICIES",
    "MANAGE_INGESTION",
    "MANAGE_SECRETS",
    "MANAGE_USERS_AND_GROUPS",
    "VIEW_ANALYTICS",
    "GENERATE_PERSONAL_ACCESS_TOKENS",
    "MANAGE_ACCESS_TOKENS",
    "MANAGE_DOMAINS",
    "MANAGE_TESTS",
    "MANAGE_GLOSSARIES",
    "MANAGE_USER_CREDENTIALS",
    "MANAGE_TAGS"
  ],
  "displayName": "Root User - All Platform Privileges",
  "editable": false,
  "description": "Grants full platform privileges to root datahub super user.",
  "state": "ACTIVE",
  "type": "PLATFORM"
}