Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我有同名的用户和组,同时将用户(mqm)添加到组(mqm)中,我遇到了以下问题。请给我解决方案。
[root@localhost /]# useradd -G mqm mqm useradd: user 'mqm' already exist
useradd不会将用户添加到组。它将用户帐户添加到系统。你想用usermod. 看man usermod
useradd
usermod
man usermod
怎么样groupadd?
groupadd
root# groupadd -g GID mqm
然后将用户添加mqm到组mqm中。
mqm
在这里看到这个。