Mark Lybarger wrote:
i'm trying to use sshexec with a keyfile. i generated a key on the remote server using the ssh-keygen -t dsa. this gave me a ~/.ssh/id_dsa and ~/.ssh/id_dsa.pub. i pulled the id_dsa.pub file to the remote machine from where i want to run the sshexec task. i put the file into the

BUILD FAILED
D:\dev\workspace\autodeploy\build.xml:687: com.jcraft.jsch.JSchException: java.io.FileNotFoundException: id_dsa (The system cannot find the file specified)


you need to set the remote key to the location of the private key you use for a connection. you cannot make a connection with the public key; you cannot assume that <scp> will know to look into ~/.ssh, because it doesnt


<property name="remote.key" value="id_dsa.pub" />

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to