0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ユーザーのプライマリグループを変更する・差し替える(超シンプル)

Last updated at Posted at 2020-02-25

ユーザーのプライマリグループを変更して、元々のプライマリグループをサブグループに追加する作業がごくたまに発生して、絶妙に忘れてしまっていつもググっているのでメモ。

Amazon Linux (CentOS 6), Amazon Linuz 2 (CentOS 7) で動作確認済み。

1.ユーザーグループの確認

$ groups [ユーザー名]

2. プライマリグループを変更する

$ sudo su -
$ usermod -g [変更先のプライマリグループ] [ユーザー]
# example
$ usermod -g nginx sshuser

3. サブグループを変更する

$ sudo su -
$ usermod -aG [追加するサブグループ] [ユーザー]
# e.g
$ usermod -aG sshuser sshuser

4. ユーザーグループの確認

$ groups [ユーザー名]

参考
https://www.atmarkit.co.jp/ait/articles/1612/14/news022.html

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?