脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|shell|

服务器之家 - 脚本之家 - shell - expect自动检测并重启另外一台服务器上的程序代码

expect自动检测并重启另外一台服务器上的程序代码

2022-12-12 11:20脚本之家 shell

expect自动检测并重启另外一台服务器上的程序的代码,有需要的朋友可以参考下

[s005 you] # cat haproxy_expect

复制代码 代码如下:

#!/usr/bin/expect
set ssh_user "fivetrees"
set password "123456"
spawn ssh -i /root/.ssh/$ssh_user Server004.xd.com
expect_before "no)?" {
send "yes " }
sleep 0.5
expect "Enter passphrase for key*"
send "$password "
expect "*#"
send "/tmp/haproxy.sh "
expect "*#"
send "echo "
exit

 

[s004 him] # cat haproxy.sh

 

复制代码 代码如下:

#!/bin/bash
Thread=`ps -ef | grep haproxy | grep -v haproxy.sh | grep -v grep`
if [ -z "$Thread" ]
then
        /tmp/haproxy_expect
fi

 

[s004 him] # cat haproxy_expect

 

复制代码 代码如下:

#!/usr/bin/expect
set ssh_user "fivetrees"
set password "123456"
spawn ssh -i /root/.ssh/$ssh_user Server005.xd.com
expect_before "no)?" {
send "yes " }
sleep 0.5
expect "Enter passphrase for key*"
send "$password "
expect "*#"
send "/usr/local/haproxy/sbin/haproxy -f /usr/local/haproxy/haproxy.cfg "
expect "*#"
send "echo "
exit

 

延伸 · 阅读

精彩推荐