Error message id: cannot find name for group ID after logging in
Solution 1
What likely happened is that the UID and GID are provided to the server via LDAP. If the /etc/group file doesn't contain the translation for the GID, then the server administrators likely just failed to update the group definitions. What can you do? Not much. The user id is controlled by the administrator. (Now if you happen to have ROOT privileges, you can add the group into /etc/group. You should also check to see if any other user accounts are using the same group, and if they are, name the group appropriately).
Solution 2
This happened when my user "jackson" wasn't assigned a group. I knew the solo group id for my user was 1000 (when a user is created with $ adduser and no parameters are defined, the user is assigned the next ids available beyond 999. The first getting uid 1000 and gid 1000).
This warning means your user does not belong to a group so what you need to do is to add the user to a group. Either have your admin help you like @sparticvs mentioned or if you have root privileges / it's your machine you can do the following:
$ addgroup [your_user_name]
$ usermod -a -G [your_user_name] [your_user_name]
And that should fix it (untested)
What I did was simply (advanced)
$ sudo vi /etc/group- modify the line of
web:x:1001:toweb:x:1000:jackson
Which made my user jackson belong to the web group.
FYI if you're not familiar with vim I do not recommend the "advanced" steps, if you're really really desperate use $ sudo nano /etc/group
Solution 3
This can also happen if you are running a VM that usually gets its data from LDAP, but is unable to connect. I'm sure that there's a way to fix this, but I usually just reboot it once the connection is available again.
Related videos on Youtube
dreftymac
Updated on September 18, 2022Comments
-
dreftymac 8 monthsBACKGROUND
Trevor logs into his account on ssh://foobar.university.edu as one of the developers on the box, and he gets the message:
id: cannot find name for group ID 131Trevor then checks this out using
vim /etc/groupPROBLEM
Trevor discovers that there is no 131 anywhere in the /etc/group file.
Trevor then runs id ...
> id trevor uid=4460(trevor) gid=131 groups=48(foobar),51(doobar),131To discover his primary group apparently does not have a name attached to it.
QUESTIONS
- What likely happened to cause this circumstance on the foobar.university.edu box ?
- Suppose trevor wants to fix this (e.g., by just creating a "trevor" group that maps to GID 131) what is the best way to do this without potentially breaking anything else on the server ?
-
Admin about 8 yearsOr maybe you have an incorrectaccess right on /etc/group file.
-
dreftymac over 10 yearsThanks for the reply. Additional note: If you do have sufficient privileges; adding to group file can be done viagroupadd --gid 131 foobargroup -
XXX almost 7 years@dreftymac Assuming that runningidreports the same ID for uid, gid and groups, I guess it is safe togroupadd -gID username? -
nobody almost 4 yearsIf this account was configured using an sssd with ldap/ad, another possibility(if you have root access on your system) is that your ldap_group_search_base attribute isn't general enough, and doesn't contain the group your system is searching for.