1. openssl 설치
Section titled “1. openssl 설치”sudo apt install rpmrpm -qa openssl2. rsa secret key text 파일 생성
Section titled “2. rsa secret key text 파일 생성”그냥 vi로 파일 만들어서 넣어줘도 된다.
vi (원하는 경로)3. pem key 생성
Section titled “3. pem key 생성”아래 명령어로, 텍스트 파일 이름과 pem 키를 저장할 위치와 이름을 지정해준다.
openssl rsa -in {key text 파일} -text > {pem key 저장할 경로}4. ssh로 접속
Section titled “4. ssh로 접속”ssh -i {pem key 경로} {username}@{url} -p {port}