The first stray work, but then a ruby ​​error after stopping / up

I installed ruby ​​2.1.6, vagrant 1.7.2 abd virtual box 4.3.28.

The first vagrant up works fine and the window loads and the server works, but when I start halt and then try another vagrant up , I get a ruby ​​error message below

 C:/Users/Mike/.vagrant.d/gems/gems/childprocess-0.5.6/lib/childprocess/windows/lib.rb:308: [BUG] Segmentation fault ruby 2.0.0p353 (2013-11-22) [i386-mingw32] // lots of output listing ruby files [NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: http://www.ruby-lang.org/bugreport.html This application has requested the Runtime to terminate it in an unusual way. Please contact the application support team for more information. 

The general conclusion is long, so I had to download it separately here :

I tried uninstalling everything and reinstalling it, but the same thing always happens. Can someone understand this error message for me and give me some tips on how to fix it?

A stray project runs on my desktop computer, this question just happens to be with my laptop.

+8
ruby vagrant
source share
2 answers

I have the same problem since yesterday and I was able to find a workaround through these commands

 > vagrant plugin install ffi > vagrant plugin uninstall ffi && vagrant plugin install ffi --plugin-version 1.9.8 

After that, you can easily cope with a tramp up . The reason was the last ffi gem released the other day (I think this only affects Windows users), so for those who have just installed or updated the stroller, we need to lower ffi to 1.9.8 at the moment.

Source: https://github.com/mitchellh/vagrant/issues/5869

+10
source share

Today we are facing the same problem (it worked on the last Friday). After reinstalling / uninstalling / restarting countless times, I can solve this problem by following these steps:

  • Go to the folder .vagrant.d \
  • Remove both plugins.json and all gems
  • My existing Vagrantfile had code to install the plugin if it does not exist. I also had to remove it.

This basically eliminates all the plugins to make it work. I used only the stroller-kachye, so for me this is not very important.

+1
source share

All Articles