320x100
aws 환경에서 user 계정이 아닌 root 계정으로 로그인 하려면
Please login as the user "ec2-user" rather than the user "root".
위와 같이 에러가 발생 된다.
root 계정으로 정상 적으로 접속 하려면
우선
# vi /etc/ssh/sshd_config
#PermitRootLogin yes
주석을 삭제 하고 저장
# cp /home/ec2-user/.ssh/authorized_keys /root/.ssh/
key 파일을 root 위치에 저장
# service sshd restart
하면 정상적으로 root 로 저장 된다.
root 암호는 ubuntu 와 같이 초기 암호 설정 해주면 된다.
# sudo passwd root
320x100
'AWS' 카테고리의 다른 글
EC2 인스턴스 생성후 스토리지 추가 하기 (0) | 2021.04.15 |
---|---|
aws jenkins 설치 하기 (0) | 2021.04.06 |