我可以使用boto启动AWS Ubuntu EC2 实例。有没有人尝试将脚本上传到远程 Ubuntu EC2(超过 1 个)并在本地通过 SSH 执行脚本?
主要目标是使用在 localhost 上编写的 Python 脚本自动化整个过程。是否有替代方法或 Amazon api 工具可以使这成为可能?
我推荐Fabric,它是为这种东西而设计的。
使用paramiko API
在这里,要在远程 AWS EC2 Python 中执行的 Paramiko 代码:
import paramiko
sftp, transport= None, None, None
try:
if keyfilepath=='': keyfilepath= AWS_KEY_PEM
if keyfiletype == 'DSA': key = paramiko.DSSKey.from_private_key_file(keyfilepath)
else: key = paramiko.RSAKey.from_private_key_file(keyfilepath)
if contype== 'sftp' :
transport = paramiko.Transport((host, port))
transport.add_server_key(key)
transport.connect(None, username, pkey=key)
sftp = paramiko.SFTPClient.from_transport(transport)
if isprint : print('Root Directory :\n ', sftp.listdir())
return sftp
except Exception as e:
print('An error occurred creating client: %s: %s' % (e.__class__, e))
if sftp is not None: sftp.close()
if transport is not None: transport.close()
if ssh is not None: ssh.close()