centos 下面使用yum方式安装sshpass
远程登录其他机器执行命令,之前一直用export 脚本的方式。现在感觉用这个更加方便一点,但是不安全,不建议在生产环境中使用此命令!
安装epel源
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
yum install sshpass -y
sshpass -p 'password' ssh user@ip 'cmd'
ssshpas -p '远程机器密码' 使用ssh 用户名@远程机器ip '要执行的命令'
第一次使用:
连接失败有错误:执行后什么都没有提示,查看返回状态码为6 就是有问题喽~
解决: 先ssh user@ip 连接下,第一次手动匹配下 "yes",然后再执行sshpass 这个命令
再执行成功:
其他系统环境安装:
ubuntu下面使用apt-get 方式安装
# apt-get install sshpass
源码方式安装
wget http://sourceforge.net/projects/sshpass/files/latest/download -O sshpass.tar.gz
tar xf sshpass.tar.gz
cd sshpass-1.06/
./configure
make && make install
本文最后记录时间 2023-10-14
文章链接地址:https://me.jinchuang.org/archives/28.html
本站文章除注明[转载|引用|来源],均为本站原创内容,转载前请注明出处
文章链接地址:https://me.jinchuang.org/archives/28.html
本站文章除注明[转载|引用|来源],均为本站原创内容,转载前请注明出处