vagrant up 挂在 ssh 上
vagrant up hangs on ssh
我做了 vagrant up --provision libvirt
它挂在了:
default: Waiting for SSH to become available...
我可以vagrant ssh
。有用!但我不明白为什么 vagrant up 在 ssh 模式下挂起。
我从本地删除了所有机器。再次构建。没有解决问题。
另外,重新安装插件也无济于事。
另外,从我的仓库中删除 .vagrant 文件!
我从 .vagrant.d 中删除了不安全的密钥对
我做了 vagrant reload
问题实际上是这个错误:
An action 'up' was attempted on the machine 'default',
but another process is already executing an action on the machine.
Vagrant locks each machine for access by only one process at a time.
Please wait until the other Vagrant process finishes modifying this
machine, then try again.
If you believe this message is in error, please check the process
listing for any "ruby" or "vagrant" processes and kill them. Then
try again.
我杀死了所有 ruby 和 vagrant 进程,但没有帮助
流浪者版本:1.9.4
流浪者 libvirt 版本:0.0.37
ubuntu16.04
我 运行 在尝试 运行 vagrant up --provider=lxc
时遇到了类似的问题
我只是通过检查是否有任何 ruby/vagrant 进程已经 运行ning 并杀死它来修复它。
仅供参考,就我而言,在当前 运行 之前由我发起的 vagrant up
进程仍然是 运行ning。
$ ps -ef | grep ruby
$ ps -ef | grep vagrant
$ kill -9
$ Restart "vagrant up --provider=lxc"
我做了 vagrant up --provision libvirt
它挂在了:
default: Waiting for SSH to become available...
我可以vagrant ssh
。有用!但我不明白为什么 vagrant up 在 ssh 模式下挂起。
我从本地删除了所有机器。再次构建。没有解决问题。
另外,重新安装插件也无济于事。
另外,从我的仓库中删除 .vagrant 文件!
我从 .vagrant.d 中删除了不安全的密钥对
我做了 vagrant reload
问题实际上是这个错误:
An action 'up' was attempted on the machine 'default',
but another process is already executing an action on the machine.
Vagrant locks each machine for access by only one process at a time.
Please wait until the other Vagrant process finishes modifying this
machine, then try again.
If you believe this message is in error, please check the process
listing for any "ruby" or "vagrant" processes and kill them. Then
try again.
我杀死了所有 ruby 和 vagrant 进程,但没有帮助 流浪者版本:1.9.4 流浪者 libvirt 版本:0.0.37 ubuntu16.04
我 运行 在尝试 运行 vagrant up --provider=lxc
时遇到了类似的问题
我只是通过检查是否有任何 ruby/vagrant 进程已经 运行ning 并杀死它来修复它。
仅供参考,就我而言,在当前 运行 之前由我发起的 vagrant up
进程仍然是 运行ning。
$ ps -ef | grep ruby
$ ps -ef | grep vagrant
$ kill -9
$ Restart "vagrant up --provider=lxc"