세모튜브

SSH - key 파일 접속 간소화 ( 아마존, 오라클 ) 본문

설치

SSH - key 파일 접속 간소화 ( 아마존, 오라클 )

iDevKim 2022. 7. 2. 19:10

1. key 파일 복사

아마존 key파일이 있는곳으로 이동 후

aws % ls

aws-ssh-key-220622.pem

aws % cp aws-ssh-key-220622.pem ~/.ssh/

 

오라클 key파일이 있는곳으로 이동 후

oracle % ls

oracle-ssh-key-220622

oracle % cp oracle-ssh-key-220622 ~/.ssh/

 

~/.ssh 로 이동

% cd ~/.ssh

key파일 권한 변경

.ssh % chmod 600 aws-ssh-key-220622.pem

.ssh % chmod 600 oracle-ssh-key-220622

 

config파일 생성

Host 접속시 사용할 이름

        HostName IPAddress

        User userID

        IdentityFile keyFile

 

.ssh % nano config

Host amazone

        HostName xxx.xxx.226.81

        User ubuntu

        IdentityFile ~/.ssh/aws-ssh-key-220622.pem

Host oracle

        HostName xxx.xxx.117.202

        User ubuntu

        IdentityFile ~/.ssh/oracle-ssh-key-220622

저장 -> 종료

 

config파일 권한변경

.ssh % chmod 700 config

 

실행 접속

$ ssh amazone

$ ssh oracle

 

 

 

'설치' 카테고리의 다른 글

AWS 인스턴스에 VPN-WireGuard 설치하기  (0) 2023.11.10
Mac : PostgreSQL 설치하기  (0) 2023.11.07
Ubuntu 18.04 : python 3.8 설치  (0) 2021.10.08
ubuntu : pip  (0) 2021.09.29
Ubuntu 18.04 : Python-venv 사용  (0) 2021.08.11