반응형
1. 인스턴스 접속 방법
ssh -i [pem파일경로] [ec2-user계정명]@[ec2 instance의 publicIP]
2. 다운로드 방법
scp -i [pem파일경로] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[경로] [다운로드 파일의 로컬 경로]
3. 업로드 방법
# 파일 전송시
scp -i [pem file] [upload file] [user id]@[ec2 public IP]:~/[transfer address]
# 예시
scp -i Desktop/aws/galaxy_squirrel.pem Desktop/pant.py ubuntu@~~~~:~/
# 폴더 전송시
scp -i [pem file] -r [upload folder] [user id]@[ec2 public IP]:~/[transfer address]
# 예시
scp -i Desktop/aws/galaxy_squirrel.pem -r Desktop/example ubuntu@~~~~:~/
반응형
'개발 환경 > AWS' 카테고리의 다른 글
[AWS] Amazon RDS, CloudWatch로 모니터링하기 (0) | 2021.04.28 |
---|---|
[AWS] AWS API Gateway 모니터링하기 (0) | 2021.04.26 |
[AWS] Google drive에 있는 파일을 Amazon S3 Bucket에 업로드하기 (0) | 2021.04.21 |
[AWS] AWS Lambda Layer, Serverless로 배포하기 (0) | 2020.12.01 |
[AWS] AWS CodePipeline을 활용한 빌드/배포 자동화 (0) | 2019.12.03 |
댓글