scp -i {key path} -r [email protected]:{remote path} {local path}
eine andere Möglichkeit ist
scp -i "insert key file here" -r "insert ec2 instance here" "your local directory"
Ein Fehler, den ich gemacht habe, war scp -ir
. Der Schlüssel muss nach der -i
stehen , und die -r
danach.
also
scp -i amazon.pem -r [email protected]##-##-##:/source/dir /destination/dir
Rufen Sie scp
an vom Client-Rechner mit rekursiver Option:
scp -r [email protected]:src_directory dst_directory