não é capaz de desligar ou destruir uma caixa Vagrant com falha

0

Estou usando o VMWare Fusion 10 + vagrant + High Sierra.

Eu provisionei uma caixa vagabunda do FreeBSD com:

$ vagrant init freebsd/FreeBSD-10.3-RELEASE
$ vagrant up --provider vmware_fusion

Então cometi um erro estúpido e perdi o controle / travou a VM.

Tanto vagrant ssh , vagrant halt e vagrant destroy default não estão funcionando.

$ vagrant halt
==> default: Attempting graceful shutdown of VM...
^C==> default: Waiting for cleanup before exiting...
^C==> default: Exiting immediately, without cleanup!
$ 


$ vagrant destroy default
    default: Are you sure you want to destroy the 'default' VM? [y/N] y
==> default: Stopping the VMware VM...
^C==> default: Waiting for cleanup before exiting...

O que fazer?

    
por Rui F Ribeiro 04.03.2018 / 00:53

1 resposta

0

Você precisa matar a instância real do VMWare.

Como estou jogando com o nome padrão ...

$ px ax | grep default | grep VMware
46826   ??  Ss     2:09.49 /Applications/VMware Fusion.app/Contents/Library/vmware-vmx -s vmx.noUIBuildNumberCheck=TRUE -# product=1;name=vmrun;version=1.17.0;buildnumber=7520154;licensename=VMware Fusion for Mac OS;licenseversion=10.0; -@ duplex=3;msgs=ui /Users/ruiribeiro/.vagrant/machines/default/vmware_fusion/c38ba960-54c2-4bf6-ba61-0388f47da5d9/vagrant.vmx

$ kill -9 46826 

Depois de eliminá-lo, você finalmente consegue limpá-lo / destruí-lo com sucesso:

$ vagrant destroy default
    default: Are you sure you want to destroy the 'default' VM? [y/N] y
==> default: Deleting the VM...
$
    
por 04.03.2018 / 00:53