Hyeyeon blog

[AWS] ec2 ubuntu root 비밀번호 로그인 설정 본문

개발/etc

[AWS] ec2 ubuntu root 비밀번호 로그인 설정

Hyeyeon.P 2020. 11. 18. 19:34
반응형

1. ssh 명령어를 통해 ec2 인스턴스에 접속

ssh -i {.pem 파일 경로} ubuntu@{ec2 퍼블릭 IPv4 주소 혹은 DNS}  

 

2. 비밀번호 설정

sudo passwd root
New password:
Retype new password:
passwd: password updated successfully

 

2. ssh 설정 변경

vim /etc/ssh/sshd_configPermitRootLogin yesPasswordAuthentication yes

 

3. ssh 재시작

    - 오류 메세지가 발생한다면, sudo sshd -t 명령어로 sshd_config 내용에 이상이 없는지 확인해볼 것

service ssh restart

4. root로 ec2 접속

ssh root@{ec2 퍼블릭 IPv4 주소 혹은 DNS}
root@xxx.xxx.xxx.xxx's password:
root@ip-xxx.xxx.xxx.xxx:~#
728x90
Comments