728x90
반응형
자주사용하는 ssh host가 있으면 .ssh/config
에 등록하고 쉽게 사용하자
SSH config에 추가
vi ~/.ssh/config
Host gpu
HostName my-aws-ec2
User ec2-user
IdentityFile ~/.ssh/{YOUR_PRIVATE_KEY}
# config 추가 전
$ ssh -i ./aws.pem ec2-user@my-aws-ec2
# config 추가 후
$ ssh gpu
pem
, config
파일은 퍼미션 440으로 지정
$ chmod 440 ~/.ssh/config
$ chmod 440 ~/.ssh/aws.pem
728x90
728x90
BIG
'Programming > 환경셋팅' 카테고리의 다른 글
Rabbit MQ - message queue (0) | 2020.06.24 |
---|---|
gcp(google cloud platform) tpu 사용 (0) | 2020.06.23 |
AWS S3 - ec2에 mount 하기 - s3fs보다 2배 빠르다 - goofys (0) | 2019.12.31 |
Data Ingestion, Gobblin (0) | 2016.09.27 |
vim 에서 go syntax highlight (0) | 2016.04.05 |
댓글