ssh keys - Rundeck ssh connection refused -
i can't execute remotely on nodes, stored node's private key on /var/lib/rundeck/nodes/backend-01.key
, error:
execution log:
execution failed: 20 in project deployments: [workflow result: , step failures: {1=dispatch failed on 1 nodes: [backend-01: connectionfailure: conexión rehusada (connection refused)]}, node failures: {backend-01=[connectionfailure: conexión rehusada (connection refused)]}, status: failed]
my resources.xml:
<project> <node name="backend-01" description="backend-01" tags="" hostname="10.10.10.10" osarch=" x86_64" osfamily="unix" osname="linux" osversion="x86_64" username="backend-01" ssh-keypath="/var/lib/rundeck/nodes/backend-01.key" /> </project>
i store node private key on /var/lib/rundeck/nodes/backend-01.key
i followed tutorial, didn't worked
connection refused
means ssh port on target node not open. can firewall policy, openssh not running , others
are able ssh rundeck server target node using ssh -i /var/lib/rundeck/nodes/backend-01.key backend-01@10.10.10.10
?
Comments
Post a Comment