FreeIPA : ユーザーアカウントを新規追加する2021/03/11 |
FreeIPA サーバーにユーザーアカウントを追加します。
|
|
[1] | ユーザーを個別に追加します。設定したパスワードは初回ログイン時に変更を求められます。 |
[root@dlp ~]# ipa user-add cent --first=CentOS --last=Linux --password
Password: # パスワード設定
Enter Password again to verify:
-----------------
Added user "cent"
-----------------
User login: cent
First name: CentOS
Last name: Linux
Full name: CentOS Linux
Display name: CentOS Linux
Initials: CL
Home directory: /home/cent
GECOS: CentOS Linux
Login shell: /bin/sh
Principal name: cent@IPA.SRV.WORLD
Principal alias: cent@IPA.SRV.WORLD
User password expiration: 20210310062149Z
Email address: cent@ipa.srv.world
UID: 1611800001
GID: 1611800001
Password: True
Member of groups: ipausers
Kerberos keys available: True
# 登録確認 [root@dlp ~]# ipa user-find cent -------------- 1 user matched -------------- User login: cent First name: CentOS Last name: Linux Home directory: /home/cent Login shell: /bin/sh Principal name: cent@IPA.SRV.WORLD Principal alias: cent@IPA.SRV.WORLD Email address: cent@ipa.srv.world UID: 1611800001 GID: 1611800001 Account disabled: False ---------------------------- Number of entries returned 1 ---------------------------- |
[2] | ローカルユーザーを一括で登録します。パスワードは仮パスワードとしてユーザー名と同一にします。 ( 各々のユーザーは初回ログイン直後にパスワード変更を求められる) |
[root@dlp ~]#
vi ipauser.sh
# ローカルの GID が 1000-9999番のユーザーを抽出する # 一例ですのでご自由に改変ください #!/bin/bash for line in `grep "x:[1-9][0-9][0-9][0-9]:" /etc/passwd` do USER=`echo $line | cut -d: -f1` FIRST=`echo $line | cut -d: -f5 | awk {'print $1'}` LAST=`echo $line | cut -d: -f5 | awk {'print $2'}` [ ! "$FIRST" ] && FIRST=$USER [ ! "$LAST" ] && LAST=$USER echo $USER | ipa user-add $USER --first=$FIRST --last=$LAST --password done sh ipauser.sh ------------------- Added user "redhat" ------------------- User login: redhat First name: redhat Last name: redhat Full name: redhat redhat Display name: redhat redhat Initials: rr Home directory: /home/redhat GECOS: redhat redhat Login shell: /bin/sh Principal name: redhat@IPA.SRV.WORLD Principal alias: redhat@IPA.SRV.WORLD User password expiration: 20210310062322Z Email address: redhat@ipa.srv.world UID: 1611800003 GID: 1611800003 Password: True Member of groups: ipausers Kerberos keys available: True ..... ..... |
Sponsored Link |