显示页面过去修订反向链接回到顶部 本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。 ====== Vagrant ====== * [[https://www.vagrantup.com/|Office site]] ===== Tips ===== * windows 打包的 box 在 Mac 上用有可能缺少 认证文件, 导致 vagrant ssh 进不去, 但可以直接用密码 ssh 进去。 解决办法: * 用 ''ssh-keygen'' 生成一对 is_rsa 与 is_rsa.pub ; * ''ssh-add ~/.ssh/id_rsa'' 加入证书列表 * 在Vagrantfile 设置<code> config.ssh.private_key_path = “~/.ssh/id_rsa” config.ssh.forward_agent = true </code> * 在虚拟机 ''~/.ssh/authorized_keys'' 文件中追加宿主机 ''~/.ssh/id_rsa.pub'' 文件里面的内容; * ''vagrant reload'' 重启虚拟机就可以正常连接了 public/it/vagrant.txt 最后更改: 2018/02/28 13:48由 127.0.0.1