Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
vagrant:start [2020/12/18 12:25] – [Tipps & Tricks] js | vagrant:start [2020/12/18 13:50] (current) – js |
---|
* [[https://app.vagrantup.com/boxes/search|Vagrant Boxes]] - find vagrant boxes | * [[https://app.vagrantup.com/boxes/search|Vagrant Boxes]] - find vagrant boxes |
| |
====== Tipps & Tricks ====== | * [[vagrant:tipps|Vagrant Tipps & Tricks]] - a list of solved problems |
| |
* [[https://github.com/hashicorp/vagrant/issues/12045|Can't connect to linux box]] - ssh login to local loopback 127.0.0.1 is not working. \\ \\ Add to local global config file <wrap em>~/.vagrant.d/Vagrantfile</wrap> the following<code bash>Vagrant.configure("2") do |config| | |
config.vm.provider : vmware_fusion do |v| | |
v.ssh_info_public = true | |
end | |
end</code> | |
| |