使用 Fabric 设置 VPS
Fabric 是否适合新的 VPS 设置(例如 Linode 或 SliceHost)?
slicehost 文章中解释了该设置
这篇 所需的操作基本上是:
- 更改 root 密码
- 创建新用户和组
- 将组添加到 sudoers 列表
- 设置主机名
- 生成本地 ssh 密钥并安全上传公钥
- 设置 iptables
如果 Fabric 不是该工具,是否有更好的工具?
谢谢
Is fabric suitable for a new VPS setup like Linode or SliceHost?
The setup is explained in this slicehost article
The required actions are basically:
- changing root password
- creating a new user and group
- add the group to the list of sudoers
- set hostname
- generate local ssh keys and upload securely the public key
- set iptables
If fabric is not the tool, is there a better tool for this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fabric 非常适合这些任务。本质上,您通过 SSH 执行的任何操作都可以使用 Fabric 自动化。它还允许您上传和下载文件。
您可能会通过在本地调用 shell 命令来生成本地密钥;但其他一切都在 Fabric 的范围内。
Fabric would work very well for these tasks. Essentially anything you do over SSH can be automated with Fabric. It also allows you to upload and download files.
You would probably generate your local keys by invoking shell commands locally; but everything else is in fabric's domain.