계정 수정 : usermod
계정 삭제 : userdel
1. sudo 권한 부여
vi /etc/sudoers2. root 그룹 부여
root ALL=(ALL) ALL 아래에 다음 내용 추가
계정명 ALL=(ALL) ALL
vi /etc/group3. uid, gid 값을 root 값으로 변경
root:x:0: ----> root:x:0:계정명
vi /etc/passwd4. SSH Config 수정
계정명:x:uid:gid::/home/계정명:/bin/bash --------> 계정명:x:0:0::/home/계정명:/bin/bash
vi /etc/ssh/sshd_config5. Service 재 시작
PermitRootLogin = prohibit-password | without-password | no 일 경우,
PermitRootLogin yes 로 변경
service sshd restart
댓글을 달아 주세요
댓글 RSS 주소 : http://www.yongbi.net/rss/comment/849