遠端執行命令

bfmo發表於2016-09-06
很多時候linux伺服器管理、釋出程式碼等,通常需要兩個工具,一個是遠端複製,一個是遠端執行命令,下面介紹兩個指令碼,實現這兩個功能。
需要安裝expect,遠端執行命令,centos下直接yum -y install expect
遠端執行命令指令碼
可以透過指令碼實現遠端執行命令,對遠端伺服器進行管理,在程式碼釋出方面比較好用,具體指令碼如下:

[root@localhost ~]# cat remote-exe.sh
#!/usr/bin/expect -f
set ipaddress [lindex $argv 0]
set port [lindex $argv 1]
set username [lindex $argv 2]
set passwd [lindex $argv 3]
set cmd [lindex $argv 4]
spawn ssh $ipaddress -p$port -l$username
expect {
"yes/no" { send "yes\r";
exp_continue }
"assword:" { send "$passwd\r" }
}
expect -re "~]($|#)"
send "$cmd \r"
expect -re "~]($|#)"
send "exit\r"

執行命令: ./remote-exe.sh 192.168.19.130 22 root 123456 /root/tt1.sh

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20610335/viewspace-2124578/,如需轉載,請註明出處,否則將追究法律責任。

相關文章