sudo로 권한변경 가능한 유저생성
2010. 2. 18. 16:08ㆍ99. 정리전 - IT/13. Unix 얇팍지식
1. sudoers 파일 수정
2. 테스트
[root@server3 ~]# useradd test1
[root@server3 ~]# passwd test1
Changing password for user test1.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[root@server3 ~]# su - test1
[test1@server3 ~]$ whoami
test1
[root@server3 ~]# vi /etc/sudoers - vi 편집기로는 /etc/sudoers 파일을 수정할 수 없다. read-only 파일이기 때문이다.
[root@server3 ~]# visudo
test1 ALL=/usr/sbin/useradd, /usr/bin/passwd - 추가해준다.
참고
- %를 이용하면 그룹지정을 할 수 있다.
ex) %users ALL= - users라는 그룹에 대해서 권한을 지정할 수 있다.
[root@server3 ~]# visudo
test1 ALL=/usr/sbin/useradd, /usr/bin/passwd - 추가해준다.
참고
- %를 이용하면 그룹지정을 할 수 있다.
ex) %users ALL= - users라는 그룹에 대해서 권한을 지정할 수 있다.
2. 테스트
[root@server3 ~]# useradd test1
[root@server3 ~]# passwd test1
Changing password for user test1.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[root@server3 ~]# su - test1
[test1@server3 ~]$ whoami
test1