Member since
01-19-2017
3681
Posts
633
Kudos Received
372
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1644 | 06-04-2025 11:36 PM | |
| 2089 | 03-23-2025 05:23 AM | |
| 1001 | 03-17-2025 10:18 AM | |
| 3783 | 03-05-2025 01:34 PM | |
| 2604 | 03-03-2025 01:09 PM |
10-26-2022
12:35 PM
@drewski7 Ranger plugins that use Ranger as an authorization module will cache local policy and use the same for authorization purposes Ranger plugins cache the tags and periodically poll the tag store for any changes. When a change is detected, the plugins update the cache. In addition, the plugins store the tag details in a local cache file – just as the policies are stored in a local cache file. When the component restarts, the plugins will use the tag data from the local cache file if the tag store is not reachable. At periodic intervals , a plugin polls the Ranger Admin to retrieve the updated version of policies. The policies are cached locally by the plugin and used for access control The Policy evaluation and policy enforcement happens within the service process. The heart of this processing is the “Policy Engine”. It uses a memory resident-cached set of policies. Ranger takes 30secs to refresh policies check the "Plugin" option in the ranger UI but you can change the refresh time In Ambari UI->HDFS->Services->Configs->"Advance ranger-hdfs-security" you can change the poll interval here[refresh time]. Geoffrey
... View more
10-26-2022
12:16 PM
@Ninja is this a sandbox if yes can you share the download link? Have you tried the below and restarting ambari? # Update password ambari-admin-password-reset # If Ambari doesn't restart automatically, restart ambari service ambari-agent restart Please let me know Geoffrey
... View more
10-02-2022
10:29 AM
@imule Firstly I would like to ask if there were any changes in the cluster i.e Patching or rpm ? if the spark-submit was running successfully before you need to know this could be linked to the python version On the edge/gateway node # python -V # Python 3.7.7 # conda deactivate # Python 2.7.5 Then try relaunching your spark-submit
... View more
09-27-2022
12:49 PM
@MISAKIGA Have you had a look at this configuring Kerberos using restAPI
... View more
09-21-2022
05:08 AM
@dmharshit The 2 SQL inserts are not identical the latter only updates the password while the former user and password. Prior to your update did your backup the table? Geoffrey
... View more
09-17-2022
01:10 PM
@dmharshit To resolve this issue, you will have to update Ranger’s backend database directly to reset the password you will need to write access to Ranger’s backend database. Using MySQL you know how to log into MySQL from either the command line The users who can access Ranger’s Admin Web UI, also call Portal, are stored in a table called “x_portal_user“. mysql> show tables; +------------------------------+ | Tables_in_ranger | +------------------------------+ | vx_trx_log | | x_access_type_def | .... | x_portal_user | | x_portal_user_role | ... +------------------------------+ 67 rows in set (0.00 sec) Query this table to confirm your Admin user is present in the table: mysql> SELECT id, first_name, last_name, login_id, password, status \ FROM x_portal_user WHERE login_id = 'admin'; +----+------------+-----------+----------+----------------------------------+--------+ | id | first_name | last_name | login_id | password | status | +----+------------+-----------+----------+----------------------------------+--------+ | 1 | Admin | | admin | fdea9c9f5fabb9c4120b9834684f0ff0 | 1 | +----+------------+-----------+----------+----------------------------------+--------+ 1 row in set (0.00 sec) The password corresponds to the hashed value of “fdea9c9f5fabb9c4120b9834684f0ff0”, reset it to default value of “admin”, which has the hash value of “ceb4f32325eda6142bd65215f4c0f371”. Please run the below query: UPDATE x_portal_user SET password = 'ceb4f32325eda6142bd65215f4c0f371' WHERE login_id = 'admin'; After that, just log into Ranger Web UI using “admin” as username and “admin” as password, then update the password IMMEDIATELY through web UI. Hope that helps Geoffrey
... View more
09-01-2022
10:57 AM
@hebamahmoud You first need to integrate Kudu with HMS I would advise you to read the whole document Geoffrey
... View more
05-31-2022
01:00 PM
@andrea_pretotto Did you use the -skipTrash option during the deletion?
... View more
05-27-2022
12:02 AM
1 Kudo
@novice_tester This is the answer Hue query location
... View more
05-26-2022
11:58 PM
@Nifi_Noob Followed this link for creation is not a usable link. Can you update. Geoffrey
... View more