Put file onto the master node.
A value for the variable Key Pair File can be set in the AWS CLI config file using the “aws configure set emr.key_pair_file <value>” command.
See ‘aws help’ for descriptions of global parameters.
put
--cluster-id <value>
--key-pair-file <value>
--src <value>
[--dest <value>]
--cluster-id
(string)
Cluster Id of cluster you want to put file onto
--key-pair-file
(string)
Private key file to use for login
--src
(string)
Source file path on local machine
--dest
(string)
Destination file path on remote host
See ‘aws help’ for descriptions of global parameters.
Note
To use the following examples, you must have the AWS CLI installed and configured. See the Getting started guide in the AWS CLI User Guide for more information.
Unless otherwise stated, all examples have unix-like quotation rules. These examples will need to be adapted to your terminal’s quoting rules. See Using quotation marks with strings in the AWS CLI User Guide .
The following command uploads a file named healthcheck.sh
to the master instance in a cluster with the cluster ID j-3SD91U2E1L2QX
:
aws emr put --cluster-id j-3SD91U2E1L2QX --key-pair-file ~/.ssh/mykey.pem --src ~/scripts/healthcheck.sh --dest /home/hadoop/bin/healthcheck.sh