WAS/AWS
[AWS] SecureCRT를 이용한 아마존 Instance 접속
리딩리드
2016. 10. 21. 11:00
SecureCRT를 이용한 Instance 접속
1. .pem -> pub
- 특정 버전에서는 pem을 인식하지 못하는것 같다
- .pem 을 .pub 으로 변환 필요
- git bash 사용
1) cp aws_pw.pem aws_pw_copy.pem
2) ssh-keygen -p -f aws_pw_copy.pem
3) ssh-keygen -e -f aws_pw_copy.pem >> aws_pw_copy.pub
2. 접속 설정
- RedHat 계열을 username이 ec2-user 이다
3. Public key 등록
- 이후 에러가 날수 있다
- 이 사이트 참조
https://rbgeek.wordpress.com/2012/08/26/public-key-authentication-in-securecrt/