Member since
04-21-2023
4
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
859 | 04-21-2023 03:42 AM |
04-21-2023
03:42 AM
Hello @drewski7 The error you're seeing suggests that Ranger Admin can't find the "XXPolicy" during the import process. This can happen due to a corrupted policy file or an issue with Ranger Admin. Restarting Ranger Admin temporarily fixes the issue, but it's not a permanent solution. To troubleshoot the issue, you can check the policy file for errors, look at the Ranger Admin logs for any warnings, verify that the policy exists in the Ranger database, and ensure that Ranger Admin is configured correctly. If you can't identify the root cause, you can contact Cloudera support for assistance. I hope this will help you.
... View more
04-21-2023
03:40 AM
Hello To authenticate and download a Docker image from a private repository such as Cloudera's repo, you can provide the credentials during the Docker build process using the "docker login" command. Here are the steps to authenticate and download Cloudera's repo image: Open a terminal and run the following command to authenticate with Cloudera's repo: docker login docker.repository.cloudera.com This command will prompt you for the username and password provided by the generator. Create a Dockerfile with the following contents FROM docker.repository.cloudera.com/cdsw/engine:13 Run the following command to build the Docker image: docker build -t my-image. This command will build the Docker image using the Dockerfile and download the Cloudera's repo image using the authenticated credentials. Note that you only need to authenticate with the private repository once per Docker engine. Once authenticated, the Docker engine will use the same credentials for subsequent pulls from that repository.
... View more
04-21-2023
03:35 AM
Yes, it is possible to create new users in Apache NiFi with administrator privileges similar to the initial admin identity.
You can use the User Authentication Provider in NiFi to add new users with the desired level of access. You can configure the User Authentication Provider to use a variety of authentication mechanisms, including PKI certs, as you are currently using.
Once you have configured the User Authentication Provider, you can add new users and assign them to appropriate user groups with the necessary access policies. You can create a new user group with the same policies as the initial admin identity user group and assign new users to it.
To create a new user group with the same policies as the initial admin identity user group, you can export the policy for the initial admin identity user group, and then import it for the new user group. To do this, navigate to the Access Policies tab in the NiFi UI, select the initial admin identity user group, and click the "Export Policies" button. Then, create a new user group and click the "Import Policies" button to import the policies from the initial admin identity user group.
After creating the new user group and assigning the new users to it, they will have the same access as the initial admin identity user. However, keep in mind that granting administrator privileges to multiple users can pose a security risk. Make sure to regularly review and update access policies to maintain security.
... View more