AWS EC2에서 파일 or 폴더 다운로드 or 업로드하는 방법
<Local to EC2>
scp -i {key path} -r { local path } username@200.200.200.200:{ remote path }
ex)
커맨드 창을 tutorial-key-pair.pem이 존재하는 폴더에서 띄우고,
scp -i "tutorial-key-pair.pem" -r D:/Workspace/naver_hackday/naver_hackday_server ec2-user@ec2-13-125-17-27.ap-northeast-2.compute.amazonaws.com:/home/ec2-user/NCH/
<EC2 to Local>
scp -i {key path} -r ec2-user@54.159.147.19:{ remote path } { local path }
cf 1) key path: .pem file
cf 2) -r은 recursive로 지정한 폴더 내의 모든 파일을 복사하는 옵션이다.
파일 다운로드 or 업로드를 하고 싶으면 -r 옵션을 빼면 된다.
0 comments