linuxssh-l命令运⽤
ssh是远程登录命令,-l选项是最常⽤的选项,下⾯是我的⼀些总结
远程登录:ssh  -l  userName  ip
# 远程登录到 10.175.23.9
ssh -l root2 10.175.23.9
执⾏远程命令(不登录):ssh  -l  userName  ip  command
# 不远程登录到 10.175.23.9,但通过命令查看10.175.23.9上⾯的nginx的进程情况
ssh -l root2 10.175.23.9 ps -ef|grep nginx
更多的情况是,command处为⼀个shell脚本,⽽配合expect  spawn ⼀起使⽤,效果是最好的,⽐如下⾯这段shell脚本是实现同时刷新两个ip主机的redis缓存的:
#!/bin/sh
echo "--------------------flushall_all_redis init--------------------"
Server09=("root1" "root1_pwd")
Server10=("root2" "root2_pwd")
function exe()
linux登录命令{
expect -c "
$1
set timeout 300
expect {
\"*(yes/no)?\"
{
send \"yes\n\"
expect \"*assword:\" {
send \"$2\n\"
}
}
\"*password:\"
{
send \"$2\n\"
}
}
expect eof
"
}
echo ""
echo "--------------------start reflush redis from 10.175.23.9--------------------"
exe "spawn ssh -l ${Server09[0]} 10.175.23.9 \"/home/weihu/bin/flushall_redis.sh\"" "${Server09[1]}"
echo ""
echo "--------------------start reflush redis from 10.175.23.10--------------------"
exe "spawn ssh -l ${Server10[0]} 10.175.23.10 \"/home/weihu/bin/flushall_redis.sh\"" "${Server10[1]}"
  上⾯例⼦中的  /home/weihu/bin/flushall_redis.sh  即为各⾃主机上⾯需要执⾏shell⽂件(⽤于刷新各⾃主机redis缓存的)。例⼦中的重点就是exe函数、以及ssh -l 两部分。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。