반응형
root 권한 로그인 차단
1. sshd config 수정
vi /etc/ssh/sshd_config
#PermitRootLogin yes --> 주석해제 후 no 로 변경
2. sshd 서비스 재시작
# service sshd restart
sudo 권한 부여
1. sudoer 파일에 write 권한 부여
chmod +w /etc/sudoers
2. sudoer 파일 수정
vi /etc/sudoers
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
python ALL=(ALL) NOPASSWD: ALL 비밀번호 없게 사용
3. sudoer 파일 권한 회수
chmod -w /etc/sudoers
반응형