Plugin version: 2.11.0
Establishes an SSH connection with remote machine to execute command on that machine.
Use Case
This action can be used when data needs to be copied to HDFS from a remote server before the pipeline starts. It can also be used to move data for archiving before the pipeline starts.
...
Configuration
Property | Macro Enabled? | Description |
---|---|---|
Hostname | Yes | Required. The host name of the remote machine where the command needs to be executed. |
Port | Yes | Optional. The port used to make SSH connection. Default is 22. |
Username | Yes | Required. The username used to connect to host. |
Private Key | Yes | Required. The private key to be used to perform the secure shell action. Users can also specify a macro that will pull the private key from the secure key management store in CDAP such as ${secure(myPrivateKey)}. |
Private Key Passphrase | Yes | Optional. Passphrase used to decrypt the provided private key in “privateKey”. |
Command | Yes | Required. The command to be executed on the remote host. This includes the filepath of the script and any arguments needing to be passed. |
Key Name for Script Output | Yes | Optional. The key used to store the output of the command run by the action. Plugins that run at later stages in the pipeline can retrieve the command’s output using this key through macro substitution (e.g. ${outputKey} where “outputKey” is the key specified). Defaults to “sshOutput”. |
Example
This example runs a script on demo@example.com:
...