CentOSで特定のユーザがsuでrootに昇格できるよう設定する
自分用メモ
/etc/login.defs に "SU_WHEEL_ONLY yes" を追加する必要はなし。
- /etc/pam.d/su を編集する
# Uncomment the following line to implicitly trust users in the "wheel" group.
#auth sufficient pam_wheel.so trust use_uid
# Uncomment the following line to require a user to be in the "wheel" group.
#auth required pam_wheel.so use_uid
これをコメントアウトを外して有効にする
# Uncomment the following line to implicitly trust users in the "wheel" group.
auth sufficient pam_wheel.so trust use_uid
# Uncomment the following line to require a user to be in the "wheel" group.
auth required pam_wheel.so use_uid - ユーザをwheelグループに追加する
usermod -G wheel user1
/etc/login.defs に "SU_WHEEL_ONLY yes" を追加する必要はなし。
コメント