linux ssh 执行成功却没返回
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux ssh 执行成功却没返回相关的知识,希望对你有一定的参考价值。
正常的ssh -v执行后有下面的过程
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: channel 0: free: client-session, nchannels 1
debug1: Transferred: stdin 0, stdout 0, stderr 0 bytes in 700.3 seconds
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.0
debug1: Exit status 0
我的执行后,到
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
然后就停止了,也不退出。
Linux多台主机批量执行命令
参考技术A 指定一台主机作为信任主机,这样从这台主机登录其他机器就不需要密码了。设置信任主机:
假设有四台机器:192.168.2.1~192.168.2.4,其中192.168.2.1为信任机,那么在192.168.2.1上运行如下命令:
$ssh-keygen -t rsa //此处一路回车,生成秘钥
$scp .ssh/id_rsa.pub 192.168.2.2:~/ //把秘钥拷贝到其他远程机器
$ssh 192.168.2.2 ‘cat id_rsa.pub >> .ssh/authorized_keys’ //(远程执行命令)在远程机器上生成认证文件
经过这几步,从192.168.2.1 ssh登陆192.168.2.2时,就不会再需要输入密码了。同样的步骤再执行3、4的极其。
文本文件hostlist可以如下
192.168.2.2
192.168.2.3
192.168.2.4
#!/bin/shdoCommand()
hosts=`sed -n'/^[^#]/p'hostlist`
for host in $hosts
do
echo ""
echo HOST$host
ssh $host "$@"
done
return 0
if [ $# -lt 1 ]
then
echo "$0cmd" exit
fi
do Command "$@"
echo "return from doCommand"
执行命令(记得先对doCommand.s
h增加执行权限 chmod u+x doCommand.sh)
./doCommand.sh “ls -al /root/”
这样该脚本就会在每台机器上执行”ls -al /root/”这个命令,并返回结果在信任主机上。
以上是关于linux ssh 执行成功却没返回的主要内容,如果未能解决你的问题,请参考以下文章
java 通过ssh连接linux服务器,怎么登录oracle执行sql并返回结果?
利用shell脚本执行ssh远程另一台主机执行命令并返回命令的结果集
linux svn post-commit 更新 我的svn post-commit 当ide提交时候可以执行,但是svn update 却没成功