- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
ambari user management view missing
- Labels:
-
Apache Ambari
Created ‎03-03-2016 01:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When I logon to Ambari as admin, I no longer see the manage ambari link. I need to create users. What could be wrong ?
Created ‎08-12-2016 07:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The problem of Manage Ambari option resolved this is what I did !
Logged on the Ambari node where the MySQL database is running. Switch to the Ambari database and deleted the entry in adminprivlege with privilege id 9 I just guessed that id 1 was created first for the ambari Admin which was a correct assumption
# ambari-server stop # ambari-server start
But prior to deleting the above entry I run these 2 API's
Delete a user using REST API
curl -iv -u admin:admin -H "X-Requested-By: ambari"-X DELETE http://ambari-server:8080/api/v1/users/{user}
Delete a group using REST API :
curl -iv -u admin:admin -H "X-Requested-By: ambari"-X DELETE http://ambari-server:8080/api/v1/groups/{group}
Hope that helps someone
Created ‎03-03-2016 01:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What version of Ambari are you using? Can you check this URI with the exact version, e.g.,
http://server:8080/views/ADMIN_VIEW/2.2.1.1/INSTANCE/#/
Can you check the API, http://server:8080/api/v1/users ?
Any errors in /var/log/ambari-server/ambari-server.log ?
Created ‎03-03-2016 02:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you do an upgrade? This usually occurs after an upgrade of Ambari. Did you remember to upgrade the Ambari database schema? This is an indication that the configurations e.g. Hive configurations in the newer version was not upgraded properly. The easiest way to fix is to look at each component, especially YARN or Hive, see if there is a missing property, usually on the initial Settings table (e.g, Hive authentication) and add it manually to the configuration file e.g. hive-site.xml.
Created ‎06-16-2016 02:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am having this same issue after upgrading to Ambari 2.2.2.0 i can only see Manage Ambari when on as Admin, my personal account is set as admin but the link no longer shows for me. The API for all users looks fine and my personal account is only in the admins group. Any thoughts on how to get the link back for my personal account?
Created ‎06-16-2016 02:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
we removed my group from my personal user account and it appears to have returned.
Created ‎06-16-2016 03:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
strange it is very random even after removing and adding group back it appears at each log in it is not there until i hit a refresh then it shows up
Created ‎06-16-2016 05:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This issue occurs when ambari ADMIN user is given operator privilege or is added to some group that is given operator privilege. I logged into the ambari database, deleted the entry that got created related to this new user from ADMINPRIVILEGE table/ restarted ambari-server and now i can see the manage ambari link when logged in as admin.
Created ‎02-15-2017 04:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How do you do this? I have no idea how to delete the entry in the ambari database
Created ‎08-11-2016 12:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I hit the same problem a I have 2 entries in the MySQL DB for the adminprivileges ? I guess the id.1 is for the admin but I don't want to take a guess so could you tel me what exatctly you deleted?
Created ‎08-12-2016 03:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes that's correct, id.1 is for admin , i deleted the other entries.
