TIL. [AWS EC2] scp 파일/디렉토리 이동

jeong_hyeon·2022년 6월 23일
0

TIL

목록 보기
22/22

i 옵션

AWS EC2 pem key 용
r 옵션

여러 파일을 포함하고 있는 디렉토리 이동 시 사용

파일 이동시

//로컬 → AWS EC2

  scp -i [pem파일경로] [로컬 파일 경로] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[서버 파일 경로]

//AWS EC2 → 로컬

  scp -i [pem파일경로] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[서버 파일 경로] [로컬 파일 경로]
디렉토리 이동시

//로컬 → AWS EC2

  scp -i [pem파일경로] -r [로컬 폴더 경로] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[서버 폴더 경로]

//AWS EC2 → 로컬

  scp -i [pem파일경로] -r [ec2-user계정명]@[ec2 instance의 public DNS]:~/[서버 폴더 경로] [로컬 폴더

0개의 댓글