我正在尝试通过exec_command在远程计算机上启动一个小型服务器。问题是它在销毁通道对象时总是终止服务器。 我目前的尝试看起来像这样:
ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh_client.connect(hostname='10.0.0.1',username='username',password='pw')
transport = ssh_client.get_transport()
channel_server = transport.open_session()
channel_server.exec_command('/home/server/streamtest')
我也直接用ssh_client.exec_command
尝试了相同的结果。
Halp plz