使用 Python Paramiko 通过 SSH 将输入/变量传递给命令/脚本
- 2024-10-10 08:38:00
- admin 原创
- 76
问题描述:
我在通过 SSH 将响应传递给远程服务器上的 bash 脚本时遇到问题。
我正在用 Python 3.6.5 编写一个程序,它将通过 SSH 连接到远程 Linux 服务器。在这个远程 Linux 服务器上,我正在运行一个 bash 脚本,该脚本需要用户输入才能填写。无论出于什么原因,我无法通过 SSH 从原始 python 程序传递用户输入并让它填写 bash 脚本用户输入问题。
主程序
from tkinter import *
import SSH
hostname = 'xxx'
username = 'xxx'
password = 'xxx'
class Connect:
def module(self):
name = input()
connection = SSH.SSH(hostname, username, password)
connection.sendCommand(
'cd xx/{}/xxxxx/ && source .cshrc && ./xxx/xxxx/xxxx/xxxxx'.format(path))
SSH.py
from paramiko import client
class SSH:
client = None
def __init__(self, address, username, password):
print("Login info sent.")
print("Connecting to server.")
self.client = client.SSHClient() # Create a new SSH client
self.client.set_missing_host_key_policy(client.AutoAddPolicy())
self.client.connect(
address, username=username, password=password, look_for_keys=False) # connect
def sendCommand(self, command):
print("Sending your command")
# Check if connection is made previously
if (self.client):
stdin, stdout, stderr = self.client.exec_command(command)
while not stdout.channel.exit_status_ready():
# Print stdout data when available
if stdout.channel.recv_ready():
# Retrieve the first 1024 bytes
alldata = stdout.channel.recv(1024)
while stdout.channel.recv_ready():
# Retrieve the next 1024 bytes
alldata += stdout.channel.recv(1024)
# Print as string with utf8 encoding
print(str(alldata, "utf8"))
else:
print("Connection not opened.")
/xxxxxx
课程的最后Connect
一个部分是启动的远程脚本。它将打开一个文本响应,等待以下格式:
你叫什么名字:
而且我似乎无法找到一种方法来正确地将响应从main.py
课堂中的文件传递给脚本Connect
。
我尝试过将其name
作为参数或变量传递,但答案似乎都消失了(可能是因为它试图在 Linux 提示符下而不是在 bash 脚本中打印它)
我认为使用read_until
函数来查找:
问题末尾可能会有效。
有什么建议吗?
解决方案 1:
将命令所需的输入写入stdin
:
stdin, stdout, stderr = self.client.exec_command(command)
stdin.write(name + '
')
stdin.flush()
(当然,您需要将name
变量从传播module
到sendCommand
,但我认为您知道如何执行该部分)。
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD