无法在centOS中运行sshpass命令

时间:2014-01-27 07:25:04

标签: ssh centos

在CentOS版本6.3(最终版)系统上工作。并尝试使用sshpass实用程序(如

)ssh另一台计算机
sshpass -p 'password' ssh user@host

但它给我的错误就像

sshpass: Failed to run command: No such file or directory

因此,从错误中我认为sshpass可能未安装,因此请尝试按yum install sshpass安装并获取以下日志

Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: mirror.leapswitch.com
 * epel: epel.mirror.net.in
 * extras: mirror.leapswitch.com
 * nux-libreoffice.org-rpms: mirror.li.nux.ro
 * updates: mirror.leapswitch.com
Setting up Install Process
Package sshpass-1.05-1.el6.i686 already installed and latest version
Nothing to do

从上面看来sshpass似乎已经安装了。所以它为什么不起作用?

1 个答案:

答案 0 :(得分:6)

检查你的shell是否知道sshpass的位置

which sshpass

如果它没有给出任何输出,则使用find命令查找可执行文件的位置:

find / -name sshpass

如果找到路径,则可以使用可执行文件的完整路径:

/path/to/sshnpass

或者添加PATH环境变量的路径,以便shell可以找到它:

export PATH=$PATH:/path/to/

或者问题可能完全不同。 sshpass可能无法找到其他依赖项。可能未安装“ssh”客户端。或者您的语法可能是wrong