PhpStorm with Vagrant Multi-Machine support
As stated here: http://blog.jetbrains.com/phpstorm/2014/02/vagrant-improvements-in-latest-phpstorm-update/#more-7153
PhpStorm 7.1.2 now its able to manage a vagrant file with multiple machines.
My problem is that when i go to the vagrant menu and click up, all the vms start booting up. I was expecting a prompt asking me to select the vm to chose from the vagrant file.
This is my vagrant file:
Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: "echo Hello"
config.vm.define "web" do |web|
web.vm.box = "CentOS-6.4-x86_64"
end
config.vm.define "db" do |db|
db.vm.box = "Ubuntu-12.04-x86_64 "
end
end
This is the output:
/usr/bin/vagrant up Bringing machine 'web' up with 'virtualbox' provider... Bringing machine 'db' up with 'virtualbox' provider... [web] Importing base box 'CentOS-6.4-x86_64'...
Am I doing something wrong?
Please sign in to leave a comment.
As far as I knwo this is not supported currently. Can you add some votes here? http://youtrack.jetbrains.com/issue/PY-12172