函数recv_exit_status无法正常工作

时间:2018-12-02 09:27:50

标签: python ssh

我需要通过ssh发送命令,如果命令成功完成,则需要获得反馈。 我试图写这个:

[t20, t30]

但函数#Creating the session on the remote machine notebook_remote_command = "nohup jupyter notebook --no-browser --port={} &\n".format(port_remote) channel = client.invoke_shell() channel.send(notebook_remote_command) status = channel.recv_exit_status() if status == "-1": exit(0) 不返回。

0 个答案:

没有答案