部署公钥
你们如何在服务器上部署代码?我正在使用 Fabric 和 Python,我想要一种更自动化的方式,通过使用公钥从存储库中提取代码,但无需任何操作或手动干预来设置公钥。
您是将它们作为文本存储在代码中还是存储在数据库中并动态生成 pk 文件?对此还有其他意见吗?
How do you guys deploy your code on your servers? I am using Fabric and Python and I would like a more automated way of pulling code from the repository through the use of public keys, but without any ops or manual intervention to set up the public keys.
Are you storing them in the code as text or in a database and generate the pk file on the fly? Any other opinions on this one ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是 ssh-copy-id 的用途。它将您的公钥部署到您的计算机上。我不建议将密钥管理放入代码/VCS 中。每个用户都需要设置他们的密钥,以便本地 ssh 客户端知道如何使用它们。我们也使用 Fabric,但它只使用 ssh 配置已经告诉它的密钥。
This is what ssh-copy-id is for. It deploys your public key onto a machine for you. Key management isn't something I'd suggest putting into code/VCS. Each user needs to setup their keys so that the local ssh client knows to use them. We use Fabric as well, but it only uses the key that the ssh config is already telling it to.