web-dev-qa-db-ja.com

エラー処理は期待ですか?

これまでこれまでに達成したので、私は私の質問を改善しています。

set username [lindex $argv 0]
set password [lindex $argv 1]
set hostname [lindex $argv 2]

if {[llength $argv] == 0} {
  send_user "Usage: scriptname username \'password\' hostname\n"
  exit 1
}

send_user "\n#####\n# $hostname\n#####\n"

spawn ssh -q -o StrictHostKeyChecking=no $username@$hostname

expect {
  timeout { send_user "\nFailed to get password Prompt\n"; exit 1 }
  eof { send_user "\nSSH failure for $hostname\n"; exit 1 }
  "Password: "
}

send "$password\r"


expect {
  timeout { send_user "\nLogin failed. Password incorrect.\n"; exit 1}
  "{severname:mike} "
}
send "ls -lrt\n"

expect {
       "{severname:mike} " {
         send "uname\n"
       }
}
expect {
        "{severname:mike} " }

send "exit\r"
close

私は正しいと思いますが、ローカルで記録されたコマンドの出力をどのように取得しますかerrlogと成功ログここで、commandはls、ls -lrtのようなコマンドのリストです

さらにこれを置くと:

 spawn ssh -q -o StrictHostKeyChecking=no $username@$hostname {ls -lrt;df -h}

ログインしてls -lrt;df -hを実行しますが、その後デバッグオプションでエラーが発生しました。おそらくsshスコープでのコマンド実行が原因で、接続が閉じます。

[root@testgfs2 final]# ./workingscript.exp  mike bar01 10.38.164.103

#####
# 10.38.164.103
#####
spawn ssh -q -o StrictHostKeyChecking=no [email protected] ls -lrt
parent: waiting for sync byte
parent: telling child to go ahead
parent: now unsynchronized from child
spawn: returns {19901}

expect: does "" (spawn_id exp6) match glob pattern "Password: "? no
Password:
expect: does "Password: " (spawn_id exp6) match glob pattern "Password: "? yes
expect: set expect_out(0,string) "Password: "
expect: set expect_out(spawn_id) "exp6"
expect: set expect_out(buffer) "Password: "
send: sending "bar01\r" to { exp6 }

expect: does "" (spawn_id exp6) match glob pattern "{severname:mike} "? no


expect: does "\r\n" (spawn_id exp6) match glob pattern "{severname:mike} "? no
total 6
-rw-r--r--   1 mike   other        136 Feb 26 08:39 local.cshrc
-rw-r--r--   1 mike   other        157 Feb 26 08:39 local.login
-rw-r--r--   1 mike   other        174 Feb 26 08:39 local.profile

expect: does "\r\ntotal 6\r\n-rw-r--r--   1 mike   other        136 Feb 26 08:39 local.cshrc\r\n-rw-r--r--   1 mike   other        157 Feb 26 08:39 local.login\r\n-rw-r--r--   1 mike   other        174 Feb 26 08:39 local.profile\r\n" (spawn_id exp6) match glob pattern "{severname:mike} "? no
expect: read eof
expect: set expect_out(spawn_id) "exp6"
expect: set expect_out(buffer) "\r\ntotal 6\r\n-rw-r--r--   1 mike   other        136 Feb 26 08:39 local.cshrc\r\n-rw-r--r--   1 mike   other        157 Feb 26 08:39 local.login\r\n-rw-r--r--   1 mike   other        174 Feb 26 08:39 local.profile\r\n"
write() failed to write anything - will sleep(1) and retry...
send: sending "ls -lrt\n" to { exp6 send: spawn id exp6 not open
    while executing
"send "ls -lrt\n""
    (file "./workingscript.exp" line 30)

コマンド変数には、次のようなセミコロンで区切られたコマンドのリストが含まれています。

   command 1; command 2;command 3(=$command)

Expectスクリプト内で1つずつ実行する方法がわからないので、コマンドをsshスコープに配置する代わりに、次のようなことを行うことができます。

spawn ssh -q -o StrictHostKeyChecking=no $username@$hostname

IFS=';'
for i in $command
do
expect {
   "{severname:mike} " {
           send "$i\n"
           }  2>> errorlog 1>> succeslog
    }
done

私はUNIX構文を使用し、構文を組み合わせて、私が何をしようとしているのかを理解できるようにしています。

5
munish

Expectの相互作用モデルには、stdoutとstderrストリームの分離は含まれていません。プロセスを生成すると、ユーザーがターミナルで表示するものとほぼ同じように動作する新しい疑似TTYが作成され、ユーザーは通常、この2つを区別できません。それを試してみてください:

$ echo "This is stdout"
This is stdout
$ echo "This is stderr" 1>&2
This is stderr

somethingを実行して違いにラベルを付けないと、Expectはそれらを区別できません(コマンドラインのユーザーのように)。したがって、Expectは、あなたがする必要があることに対して間違ったツールかもしれません。

さて、なぜこれが必要なのか正確に理解していないと、別の方法を考え出すのは困難です。必要なものについては、1つのsshコマンドでこれを実現できるように見えます。

ssh -q -o StrictHostKeyChecking=no $username@$hostname "ls -lrt; df -h" 1>>successlog 2>>errorlog

子プロセスの生成とそのstdoutとstderrを個別に取得する組み込みサポートを備えた別のスクリプト言語については、Pythonとそのサブプロセスモジュールを試してください。

import shlex
from subprocess import Popen, PIPE
cmd = Popen(shlex.split('ssh -q -o StrictHostKeyChecking=no $username@$hostname "ls -lrt; df -h"'), stdout=PIPE, stderr=PIPE)
cmd.wait() # Wait for the command to complete
success_output = cmd.stdout
error_output = cmd.stderr

しかし、あなたが本当に本当に Expectでこれを実行したい場合、最良のアプローチは、最後のプロセスの終了値を確認し、それがゼロ以外のときにエラーログファイルに書き込むことだと思います。これはそのようなものの例です:

spawn ssh -q -o StrictHostKeyChecking=no $username@$hostname
# Receive password Prompt and send the password here...
expect {
    -ex $Prompt { send "ls -lrt\r" }
    timeout {
        send_user "Everything is terrible forever.\n"
        exit 1
    }
}
expect {
    -ex $Prompt {
        set output $expect_out(buffer)
        send {echo RETVAL::$?::}
        send "\r"
    }
    timeout {
        send_user "Everything is terrible forever.\n"
        exit 1
    }
}
expect {
    -ex {RETVAL::0::} {
        set fp [open successlog a]
        puts $fp $output
        close $fp
    }
    -re {RETVAL::[1-9][0-9]*::} {
        set fp [open errorlog a]
        puts $fp $output
        close $fp
    }
    timeout {
        send_user "Everything is terrible forever.\n"
        exit 1
    }
}
8
user108471