歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux服務器

linux簡單使用expect登陸遠程計算機

 首先,要安裝expect,linux expect的安裝

  1.安裝相應的包

  yum install -y tcl tclx tcl-devel

  2.下載expect-5.43.tar.gz包(我這裡用的這個包,大家也可以用別的)

  根據參數,運行./configure

  ./configure --with-tcl=/usr/lib --with-tclinclude=/usr/include/tcl-private/generic

  3.make && make install  安裝完畢

  簡單的登陸別的機器執行命令,可行 (更詳細的還得參考expect的有關說明)

  expect.sh

  #!/usr/local/bin/expect

  set timeout 10

  spawn ssh root@ip

  expect "*password*"

  send "123456\r"

  expect "#"

  send "service crond restart\r"

  expect eof

  注:expect的功能是很強大的,實現了無須人與系統交互的功能,已經成為SA的一個強大助手,要研究的徹底,還是需要大量的時間的

Copyright © Linux教程網 All Rights Reserved