我对Python和编程很陌生。我正在尝试通过python脚本在两台计算机之间复制文件。但是代码
os.system("ssh " + hostname + " scp " + filepath + " " + user + "@" + localhost + ":" cwd)
不起作用。我认为它需要一个密码,如How to copy a file to a remote server in Python using SCP or SSH?中所述。我没有收到任何错误日志,该文件不会显示在我当前的工作目录中。
然而,os.system("ssh " + hostname + "command")
或os.popen("ssh " + hostname + "command")
的所有其他命令都有效。 - > command = e.g. ls
当我尝试
ssh hostname scp file user@local:directory
在命令行中它无需输入密码即可运行。
我尝试将os.popen
命令与getpass和pxssh模块结合起来,建立与远程服务器的ssh连接,并使用它直接发送命令(我只测试了一个简单的命令):
import pxssh
import getpass
ssh = pxssh.pxssh()
ssh.force_password = True
hostname = raw_input("Hostname: ")
user = raw_input("Username: ")
password = getpass.getpass("Password: ")
ssh.login(hostname, user, password)
test = os.popen("hostname")
print test
但是我无法将命令发送到远程服务器(print test
显示,hostname = local而不是远程服务器),但我确定,连接已建立。我认为建立连接比在bash命令中始终使用"ssh " + hostname
更容易。我也尝试了How to copy a file to a remote server in Python using SCP or SSH?中的一些解决方法,但我必须承认,由于缺乏实际操作,我没有让它们工作。
非常感谢帮助我。
答案 0 :(得分:4)
我认为最简单的(避免输入密码)和最安全的方法是首先设置public/private key authentication。完成后,您可以通过执行ssh user@hostname
登录到远程系统,以下bash命令可以解决这个问题:
scp some/complete/path/to/file user@remote_system:some/remote/path
相应的Python代码是:
import subprocess
filepath = "some/complete/path/to/file"
hostname = "user@remote_system"
remote_path = "some/remote/path"
subprocess.call(['scp', filepath, ':'.join([hostname,remote_path])])