- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Paramiko在两个服务器之间运行 ssh
命令的库。我的“主”
服务器是一台 Fedora 18
机器,而我的“从”
是一台 Windows 7
机器。为了在 Windows 7
机器上运行 ssh
服务器,我安装了 FreeSSHd .配置freesshd
后,我可以从Fedora 18机器ssh
进入Windows机器并执行类似dir
的命令。但是,当我尝试使用 Paramiko
这样做时,我没有同样的运气:
import paramiko
import os
import errno
"""
written by Philippe Ribeiro
class Connection
stabilishes the ssh connection between two servers
allowing the executing of commands remotely
"""
class Connection:
def __init__( self, hostname, username, password):
"""Create a ssh client using the paramiko library
"""
self.host = hostname
self.user = username
self.password = password
self.port = 23
self.sshclient = paramiko.SSHClient()
self.username = username
self.password = password
try:
self.sshclient.load_system_host_keys()
self.sshclient.set_missing_host_key_policy( paramiko.AutoAddPolicy() )
self.sshclient.connect( hostname=self.host, port=self.port,
username=self.username, password=self.password )
self.sftpclient = self.sshclient.open_sftp()
except SSHException, e:
print e
except AuthenticationException, e:
print e
except BadHostKeyException, e:
print e
def close(self):
"""Closes a client using the Connection class' API
"""
self.sshclient.close()
return
def remove_directory(self, path):
"""Remove remote directory that may contain files
It does not support directories that contain subdiretories
"""
if self.exists(path):
for filename in self.sftpclient.listdir(path):
filepath = os.path.join(path, filename)
self.sfptclient.remove(filepath)
self.sftpclient.rmdir(path)
return
def exists(self, path):
"""Return True if the remote path exists
"""
try:
self.sfptclient.stat(path)
except IOError, e:
if e.errno == errno.ENOENT:
return False
raise
else:
return True
def put_directory(self, localdir, remotedir):
"""Put a directory of files on the remote server
Create the remote directory if it does not exist
Does not support directories that contain subdirectories
Return the number of files transferred
"""
if not self.exists(remotedir):
self.sftp.client.mkdir(remotedir)
count = 0
for filename in os.listdir(localdir):
self.sftpclient.put(
os.path.join(localdir, filename),
os.path.join(remotedir, filename)
)
count += 1
return count
"""
Just for testing purposes
try to connect to a Windows machine from a Unix one
so it can execute commands remotely
"""
cmd = ["cd ..", "dir" ]
client = Connection("hostname", "username", "password")
try:
for c in cmd:
stdin, stdout, stderr = client.sshclient.exec_command(c)
print stdout.readlines()
except SSHException, e:
print e
client.close()
但是当我执行时:
python client.py
我得到:
['Unable to execute command or shell on remote system: Failed to Execute process.\r\n']
['Unable to execute command or shell on remote system: Failed to Execute process.\r\n']
有人可以告诉我为什么不起作用吗?我错过了什么吗?
最佳答案
将 cmd = ["cd .., "dir"]
替换为 cmd = ['cmd.exe/c "cd C:\&& dir"' ]
关于python - Paramiko 不执行命令或 shell - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14863659/
我不是 C 程序员。有什么想法吗? 这是我尝试过的安装命令: pip install paramiko sudo pip install paramiko 输出: src/_fastmath.c:15
Importing paramiko throws following exception on Python3. Traceback (most recent call last): File
我正在编写一个 Python 脚本,需要下载远程 xml 文件来解析它。 我正在使用 paramiko。 这是脚本: def copyFile(ip, user, pwd, remotePath, l
好的,所以我正在尝试在我的 python 脚本中实现 paramiko。 目的是连接同一局域网内的另一台PC,通过python执行命令。 我的 python 版本: Python 2.7.6 (def
我正在调试一些代码,这将导致我不断地登录/退出一些外部 sftp 服务器。有谁知道如果代码中出现非 paramiko 异常,paramiko 是否会自动关闭外部服务器上的 ssh/sftp sessi
我不断收到以下错误: Traceback (most recent call last): File "/home/d/workspace/paramiko/connect_test/main.p
我正在尝试通过 SSH 从 Python 远程执行命令,在这种特殊情况下需要将 stdin 重定向到/dev/null。 也就是说,与使用带有 -n 标志的 OpenSSH 客户端相同: ssh -n
当我尝试打开 mysql 工作台时,它显示“导入错误:没有名为 paramiko 的模块;操作失败:无法启动 SSH 隧道管理器”,尽管我已经安装了 paramiko。我正在使用 python 2.7
我正在尝试使用 paramiko 通过 netcat 反弹 SSH session : MyLocalMachine ----||----> MiddleMachine --(netcat)-->
我目前正在开发一个程序,该程序尝试联系运行 Cisco IOS 的众多路由器以获取其当前配置。我正在尝试使用 Paramiko 模块的 SSHClient 来实现这一点目的: def get_conf
我有基于 paramiko 模块的 python 2.7 代码,我想将其移植到 python 3.3,但我似乎找不到可以工作的 paramiko 版本或合适的替代版本。 我需要该模块在 Windows
我正在尝试运行使用 SSHLibrary 的机器人框架测试用例。我已经安装了所有必需的库(在本例中为 paramiko)。但我仍然收到此错误。 我得到的错误是: Error in file '/opt
有什么方法可以在后台运行 mysql 命令或保持连接事件一段时间,以便可以对其执行查询。可以用nohup来实现吗?如果是,怎么办? 最佳答案 是的,你可以用ajax来做到这一点 使用Nohup你可以做
我正在尝试在 python 中使用 paramiko 执行一个简单的代理命令。 基本上我正在尝试复制此 ssh 命令的行为: ssh -i ~/.ssh/destination_key user@de
This question already has answers here: Pass input/variables to command/script over SSH using Python
Paramiko 支持基于证书的身份验证吗? connect 方法中的 key_filename 提到它同时支持私钥和证书,这里的证书是指基于证书的身份验证吗? key_filename (str)
我刚刚尝试与 paramiko 进行 ssh 连接。一切看起来都很好,但在最后一步,当调用 close() 方法断开客户端连接时。 这是我的脚本: #!/usr/bin/python import p
上下文 如果有一个连接到服务器的脚本,然后 curl 本地主机以获取我需要的信息 问题 我的问题是,我需要从大约 200 台服务器获取信息,我使用的方法大约需要 15 分钟才能完成,这还不错,但我想做
我在尝试关闭 Paramiko SFTP 连接时遇到问题。即使我调用关闭连接仍然挂起,我通过运行 netstat (Windows) 检查: netstat -an | find ":22" 和pyt
localpath = 'U:\\' utime = sftp.stat("/TestBTEC/").st_mtime last_modified = datetime.fromtimestamp(u
我是一名优秀的程序员,十分优秀!