
MAC AWS 파일 업로드/다운로드
뚜부니
파일 다운로드 먼저 다운로드하려는 파일에 대한 권한을 변경합니다. chmod 777 {다운로드 하려는 파일명} 그다음 mac terminal에서 아래 명령어를 입력합니다. scp -i {cer 위치} {username}@{aws ip}:{다운로드 하려는 파일명} {다운로드 위치} # ex. scp -i /Users/subin/.ssh/nginx-blue-green.cer ubuntu@13.125.245.196:/home/ubuntu/test.txt /Users/subin/test 파일 업로드 mac terminal에서 아래 명령어를 입력합니다. scp -i {cer 위치} {업로드 하려는 파일명} {username}@{aws ip}:{파일 업로드 위치} # ex. scp -i /Users/subin/.s..