Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Unable to make any user Administrator, seemingly...

Hi,

Like many others, I have been through the "loss of Administrator status" fiasco on upgrading to Leopard. I have been through all the processes people have talked about and have ended up in the following state:

Logged in as myself, I am not admin. Mail does not recognise me and wants to set up new accounts; Journler (a third party app for note-taking) won't accept the password I use for it; and apps such as Time Machine will not accept my details.

I can log in as root. The usual advice recommended at this stage is to go to the Accounts preference pane and check "Allow user to administer this computer".

However, after checking this box, I can't save the change; either switching to another account and back or trying to close the lock result in the checkbox unchecking itself!

All the accounts, thus, are standard, and I can't change them.

What I want, of course, is an admin account that works (ie, a way to make the checkbox changes stick), and my Mail to recognise me, and Journler to recognise me. (I assume all these things are related.)

I'd be very grateful for any help! 🙂

Lawrence xx

MacBook G4, Mac OS X (10.5)

Posted on Mar 19, 2008 4:39 AM

Reply
Question marked as Best reply

Posted on Mar 19, 2008 6:46 AM

Unry,
Can you confirm that , whilst logged in as root, the account you then selected for the 'tick box' treatment was the errant admin? There have been some cases where the 'via root' fix has not been operable for various reasons but it worked for me.
Unry, I hope you have also a reserve admin albeit not able to administer at present and have non admins to browse through etc. That is a secure scheme.
If you have several users suggest you try the 'root route' to give admin rights to another user. You can always remove admin rights later. That way you could see if your inability was specific to a particular account.
6 replies
Question marked as Best reply

Mar 19, 2008 6:46 AM in response to quarterwit

Unry,
Can you confirm that , whilst logged in as root, the account you then selected for the 'tick box' treatment was the errant admin? There have been some cases where the 'via root' fix has not been operable for various reasons but it worked for me.
Unry, I hope you have also a reserve admin albeit not able to administer at present and have non admins to browse through etc. That is a secure scheme.
If you have several users suggest you try the 'root route' to give admin rights to another user. You can always remove admin rights later. That way you could see if your inability was specific to a particular account.

Mar 20, 2008 2:35 AM in response to quarterwit

a) I have solved the Mail & Journler issues; they were unrelated, after all.

b) I tried the following to create a new Admin via the terminal:

{quote}sudo dscl . create /Users/$USERNAME
sudo dscl . create /Users/$USERNAME PrimaryGroupID 0
sudo dscl . create /Users/$USERNAME UniqueID 0
sudo dscl . create /Users/$USERNAME UserShell /bin/bash
sudo dscl . passwd /Users/$USERNAME $PASSWORD
sudo dscl . append /Groups/admin GroupMembership $USERNAME{quote}

...but the last command gives me an error:


{quote}append: Invalid Path
<dscl_cmd> DS Error: -14009 (eDSUnknownNodeName){quote}

Does this tell me anything?

Mar 22, 2008 6:25 AM in response to quarterwit

(skip to "** QUICKQUICK **" if you don't have much time)

So I cancelled sleep last night after having lost administrator access as well. Basically what happened is that Azureus went apeshit and started filling up my whole hard disk whilst being unkillable. In the end I just held down the power button to shut the machine down. A reboot later all administrator users were gone.

I went into single user mode to enable the root user, logged into it and tried to give administrator rights back through System Preferences. To no avail! Exact same problem as unry described in his initial post.

I played around with dscl a while and when trying to add my user to the admin group I got the eDSUnknownNodeName as well. My hatred for Mac OS X grew a lot in these hours but I'm proud to say that human > machine. In my case what happened is that OS X fu**ed up big time and got itself into a position from which it couldn't recover on its own.

Bit of background regarding dscl: Information about e.g. user groups and user accounts are stored in directories by OS X as opposed to e.g. /etc/passwd and /etc/groups on standard Linux systems. Now I'm certainly no guru in this area but OS X can interface with various "providers" for these directories. Typically this would be a LDAP or AD server. If you find yourself in such a setup the following might not necessarily help you, sorry 🙂 In my case however I simply had a stand alone macbook meaning that my directory information is stored in /var/db/dslocal. In there are the XML files the command line utilities such as dscl interact with.


** QUICKQUICK **

Armoured with that knowledge let's venture into single user mode once more:
- Reboot
- Hold Apple+S
$ /sbin/fsck -fy
$ /sbin/mount -uw /
$ launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist
$ dscl . append /groups/admin GroupMembership myuser
=> <dscl_cmd> DS Error: -14009 (eDSUnknownNodeName)
- huh?
$ dscl . ls /groups
=> long list with groups like "wheel" and "staff" but NO "admin"
- Apparently this group got lost somehwo. ***** but shouldn't be a big problem, we'll just recreate it with its standard id 80. For this we use a convenient utility built on top of dscl
$ dseditgroup -o create -i 80 admin
=> ERROR: A Directory Service error occured.
14135: eDSRecordAlreadyExists
- ***? It's there after all? Probably corrupted though? Let's delete and recreate it..
$ dseditgroup -o delete admin
=> ERROR: A Directory Service error occured.
14136: eDSRecordNotFound
- Oh, COME ON! create command complains that this group already exists, delete command complains that it does infact not exist? We have to step down a level and dig into the actual storage for this stuff:
$ cat /var/db/dslocal/nodes/Default/groups/admin.plist
=>
- empty output? Aaaahh! This is the key to the whole ordeal: the group definition file exists but is empty! So on the one hand directory service thinks the group exists and thus refuses to create it but on the other hand there is no information in this file, thus users can't be added, the group is not listed when using dscl etc.
$ rm /var/db/dslocal/nodes/Default/groups/admin.plist
$ dseditgroup -o create -i 80 admin
$ dscl . append /groups/admin GroupMembership myuser
- While you are in there take a quick peek into the other group definition files, if one is corrupted others might as well be..
$ reboot

Done.

It might have been an edge case with me but I'm willing to bet that this fix, or a variation of it, can help several people out who reported similar problems. Personally I am very taken aback by this. Yes, Leopard is shiny but if an essential service such as Directory Service gets corrupted so quickly (unorderly shutdown) and can't automatically revocer from something as trivial as an empty group definition file, then I don't even dare to think about how much trouble a similarly poorly implemented FileVault might cause me..

(e.g. IMHO the group.plist should never be just opened and written to. A copy should be created, this can then be edited and upon successfully writing this copy the group.plist and group.plist.tmp can then be switched to avoid ending up with an empty file..)

In any case, hope it helps. Sorry for this rather long post I just was too proud.. 😉

Cheers,
Niels

Mar 24, 2008 9:37 AM in response to Nielsomat

Amazing! Thank you!

I now have Admin status once more. 🙂

Say...as part of my own failed attempts to rectify this problem, I made a new user as described here:

http://osxdaily.com/2007/10/29/how-to-add-a-user-from-the-os-x-command-line-work s-with-leopard/

I now have a user that shows up when I at login, but not in the Accounts Preferences. Given your l33t skillz in this department, I was wondering whether you might also know how on earth I can delete this user?

Thanks again!

🙂

Lawrence.

Mar 25, 2008 6:50 AM in response to quarterwit

Hi Lawrence!

I'm glad the previous solution worked for you. To get rid of your ghost user, without having tested it, the following should do the trick:

user=YOURUSER
for group in `id -G -n $user`; do
sudo dscl . delete /groups/$group GroupMembership $user
done
sudo dscl . delete /groups/$user
sudo dscl . delete /users/$user
sudo rm -r /Users/$user

You have to replace YOURUSER with the short login name of the user you want to delete.

The following loop removes it from all groups it might be a member of, then we delete a group with the same name as the user (SKIP THIS STEP if your user is named "admin" or "staff" or something to that regard. You can check if there are other users in this group by calling dscl . read /groups/$user GroupMembership).

Then we delete the user itself and finally its home directory. You might have a slightly different directory structure so check where your home directories are by e.g. calling "pwd" in your Terminal and modify the /Users/ prefix if needed.

Good Luck
Niels.

Unable to make any user Administrator, seemingly...

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.