通过 Fabric 使用密钥对(.pem 文件)连接到 EC2

发布于 2024-10-18 08:19:13 字数 296 浏览 1 评论 0原文

有人有任何 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清欢 2024-10-25 08:19:14

您可以做的另一件事是在环境变量中设置 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

岁月无声 2024-10-25 08:19:13

要使用 pem 文件,我通常将 pem 添加到 ssh 代理,然后只需引用用户名和主机:

ssh-add ~/.ssh/ec2key.pem
fab -H ubuntu@ec2-host deploy

或指定 env 信息(不带密钥),如链接到的示例:

env.user = 'ubuntu'
env.hosts = [
    'ec2-host'
]

并正常运行:

fab deploy

To use the pem file I generally add the pem to the ssh agent, then simply refer to the username and host:

ssh-add ~/.ssh/ec2key.pem
fab -H ubuntu@ec2-host deploy

or specify the env information (without the key) like the example you linked to:

env.user = 'ubuntu'
env.hosts = [
    'ec2-host'
]

and run as normal:

fab deploy
梦中楼上月下 2024-10-25 08:19:13

在不解决编码问题的情况下,您可以将 EC2 内容放入 ssh 配置文件中:

  • ~/.ssh/config

,或者,如果全局:

  • /etc/ssh_config

您可以在其中指定主机、IP 地址、用户、标识文件等。 ,所以这是一个简单的问题:

ssh myhost

示例:

Host myhost
  User ubuntu
  HostName 174.129.254.215
  IdentityFile ~/.ssh/mykey.pem

有关更多详细信息:man ssh_config

Without addressing your encoding issue, you might put your EC2 stuff into an ssh config file:

  • ~/.ssh/config

or, if global:

  • /etc/ssh_config

There you can specify your host, ip address, user, identify file, etc., so it's a simple matter of:

ssh myhost

Example:

Host myhost
  User ubuntu
  HostName 174.129.254.215
  IdentityFile ~/.ssh/mykey.pem

For more details: man ssh_config

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文