但是这个paramiko库在python2无法安装
时间: 2024-03-13 15:46:31 浏览: 66
python3.6 安装paramiko,所需要的whl文件,适合内网安装,几个导入即可安装
的确,paramiko库在Python 2.x版本中不再维护和支持。如果你需要在Python 2.x版本中使用SSH连接,可以考虑使用类似于`pexpect`或`ssh`库。
以下是使用`ssh`库在Django中远程执行sh /text/text.sh的示例代码:
```python
import ssh
def execute_remote_script():
# SSH连接的配置信息
hostname = 'remote_host'
username = 'remote_user'
password = 'remote_password'
# 创建SSH客户端并连接远程主机
client = ssh.SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(ssh.AutoAddPolicy())
client.connect(hostname, username=username, password=password)
# 执行远程脚本
stdin, stdout, stderr = client.exec_command('/bin/bash /text/text.sh')
# 获取执行结果
output = stdout.read().decode('utf-8')
error = stderr.read().decode('utf-8')
# 关闭SSH连接
client.close()
return output, error
```
同样需要将`hostname`、`username`和`password`替换为你的远程主机的实际值,然后在你的Django视图函数中调用`execute_remote_script()`函数即可。
需要注意的是,`ssh`库在Python 2.x版本中也不再维护和支持,建议尽快升级到Python 3.x版本。
阅读全文