root 권한을 접속후
[root@localhost /]# ll /etc/sudoers
-r--r-----. 1 root root 4355 12월 23 00:52 /etc/sudoers
속성이 읽기 전용이다. 보안상 필요할때만 쓰기로 바꿔서 사용하고 읽기전용으로 변경한다.
[root@localhost /]# chmod +w /etc/sudoers
[root@localhost /]# ll /etc/sudoers
-rw-r-----. 1 root root 4355 12월 23 00:52 /etc/sudoers
sudoers 파일을 편집한다.
[root@localhost /]# vi /etc/sudoers
## Next comes the main part: which users can run what software on
## which machines (the sudoers file can be shared between multiple
## systems).
## Syntax:
##
## user MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
python ALL=(ALL) ALL /* 부여할 사용자 아이디 "python" 이라고 아이디가 있다면 추가(실제 사용할 아이디)
저장한다.
[root@localhost /]# chmod -w /etc/sudoers
읽기전용으로 변경
[root@localhost /]# ll /etc/sudoers
-r--r-----. 1 root root 4355 12월 23 00:52 /etc/sudoers
해당 계정으로 접속후 sudo 명령 사용하면 끝
'시스템 > 리눅스' 카테고리의 다른 글
Centos8 에 JenKins 설치 (0) | 2022.07.12 |
---|---|
Centos-stream8 postgressql 컴파일 설치 (0) | 2022.07.12 |
아파치 2.4.52 소스 컴파일 설치 (2) | 2021.12.29 |
CentOS,RHEL 리눅스 ISO파일로 로컬 저장소 만들기 (2) | 2021.12.23 |
인터넷 없는 환경에서 패키지 설치 (0) | 2021.12.15 |
댓글