通过 Fabric 使用密钥对(.pem 文件)连接到 EC2
有人有任何 Fabric 配方来展示如何使用 pem 文件连接到 EC2 吗?
我尝试用这种方式写: Python Fabric 运行命令返回“binascii.Error:填充不正确”< /a>
但是,当我执行 run()
函数时,我遇到了一些编码问题。
Anyone has any Fabric recipe that shows how to connect to EC2 using the pem file?
I tried writing it with this manner:
Python Fabric run command returns "binascii.Error: Incorrect padding"
But I'm faced with some encoding issue, when I execute the run()
function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以做的另一件事是在环境变量中设置 key_filename: https://stackoverflow.com/a/5327496/1729558
Another thing you can do is set the key_filename in the env variable: https://stackoverflow.com/a/5327496/1729558
要使用 pem 文件,我通常将 pem 添加到 ssh 代理,然后只需引用用户名和主机:
或指定 env 信息(不带密钥),如链接到的示例:
并正常运行:
To use the pem file I generally add the pem to the ssh agent, then simply refer to the username and host:
or specify the env information (without the key) like the example you linked to:
and run as normal:
在不解决编码问题的情况下,您可以将 EC2 内容放入 ssh 配置文件中:
,或者,如果全局:
您可以在其中指定主机、IP 地址、用户、标识文件等。 ,所以这是一个简单的问题:
示例:
有关更多详细信息:
man ssh_config
Without addressing your encoding issue, you might put your EC2 stuff into an ssh config file:
or, if global:
There you can specify your host, ip address, user, identify file, etc., so it's a simple matter of:
Example:
For more details:
man ssh_config