SCPがPexpectで機能していない


0

SCPを実行してリモートサーバーからファイルをコピーしようとしています。 root権限を持っていないので、パスワードを要求されたときにコマンドでsudoを使用します。pexpectを使用して送信していますが、実行できません。私はどこかに打たれました。

これが私のコードです:

import pexpect

def doScp(user,password,host,remotepath,localpath,files):
    print files

    child = pexpect.spawn('sudo scp -C %s:%s%s %s' % (host, remotepath, files, localpath))

    print 'scp -C %s:%s%s %s' % (host, remotepath, files, localpath)

    i = child.expect(['assword:', r"yes/no"], timeout=30)

    if i == 0:
        child.sendline(password)
    elif i == 1:
        child.sendline("yes")
        child.expect("assword:", timeout=30)
        child.sendline(password)
    data = child.read()
    print data
    child.close()

user = "xxxxx"

host = "yyyy"

password = "zzzzzz"
remotepath = "/opt/logs/"
localpath = "/opt/Performance_Logs/SRNG/"
files = "receiver.log"

doScp(user,password,host,remotepath,localpath,files)

私が得ているエラー:

ファイル "/usr/lib/python2.6/site-packages/pexpect.py"、行1325、expect_listの中でself.expect_loop(searcher_re(pattern_list)、timeout、searchwindowsize)を返すsite-packages / pexpect.py "、1409行目、expect_loopのTIMEOUTを上げます(str(e)+ '\ n' + str(self))


ファイル "/usr/lib/python2.6/site-packages/pexpect.py"、行1325、expect_listの中でself.expect_loop(searcher_re(pattern_list)、timeout、searchwindowsize)を返すsite-packages / pexpect.py "、1409行目、expect_loopのTIMEOUTを上げます(str(e)+ '\ n' + str(self))
Rajesh

回答:


0

このようにしてみてください。

child.expect("ada@ada's password:")
child.sendline("mypassword")
child.expect(pexpect.EOF, timeout=10)

このリンクはあなたを助けるかもしれません:

https://github.com/pexpect/pexpect/issues/105


エラーファイル "/usr/lib/python2.6/site-packages/pexpect.py"、1325行目のexpect_listにself.expect_loop(searcher_re(pattern_list)、タイムアウト、searchwindowsize)が返されています。 "/ usr / lib /python2.6/site-packages/pexpect.py "、1409行目、expect_loopの中のTIMEOUTを上げる(str(e)+ '\ n' + str(self))
Rajesh
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.