[ 작업 환경 ]

 

Centos-7.8-68bit

Naver Cloud Platform

 

 

 

 

 

 [ 문제 상황 ]

 

{username} is not in the sudoers file. this incident will be reported. centos 7

 

 

 

 

 

 [ 문제 원인 ]

 

sudo 명령어 사용 불가 username으로 sudo 명령어 사용시 발생

 

 

 

 

 

 [ 해결 방법 ]

 

sudo 명령어 사용 가능한 list에 해당 username 추가

 

 

 

 

1. /etc/sudoers 파일 열기

 

혹시 모를 상황을 대비해 sudoers_bak 파일로 복사해두고 root 계정으로 작업합니다.

vim /etc/sudoers

 

 

 

 

 

2. /etc/sudoers 파일 수정 후 저장하기

 

developer 가 username인 경우 아래와 같이 추가해줍니다.

root    ALL=(ALL)       ALL
developer       ALL=(ALL)       ALL

 

read only 파일이기 때문에 아래로 저장해줍니다.

:wq!

 

 

 

 

 

3. sudo command 사용하기

 

# 예시
sudo yum install epel-release

 

 

+ Recent posts