【发布时间】:2019-12-14 05:58:42
【问题描述】:
我正在用 Python 编写一个脚本,它需要使用 SSH 连接到 remote_server 并将 file 从 remote_server 移动到 host_server。我需要在没有密码的情况下执行此操作,因为它需要适用于任何远程服务器和任何主机服务器用户。
我的代码:
#get IP and username for remote access
IP = input("Enter host_server IP: ").split()
username = input("Enter username: ").split()
#password = ???????
#create a file on host_server for file
file_a = open(date+"file.txt", "a") #ignore the date variable
file = str(date+"file.txt")
#move file to host_server
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(IP[0], username = user[0], password = password[0])
print "Connected to server."
transfer = ssh.open_sftp()
transfer.get("file.txt", file)
transfer.close()
print "Transfer completed."
问题:有没有办法在脚本中设置公钥而不需要访问命令行终端,这样每次脚本运行时都会使用 SSH 设置无密码访问? p>
【问题讨论】: