エラー対処法
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Vagrant cannot forward the specified ports on this VM, since they would collide with some other application that is already listening on these ports. The forwarded port to 9980 is already in use on the host machine. To fix this, modify your current projects Vagrantfile to use another port. Example, where '1234' would be replaced by a unique host port: config.vm.network :forwarded_port, guest: 22, host: 1234 Sometimes, Vagrant will attempt to auto-correct this for you. In this case, Vagrant was unable to. This is usually because the guest machine is in a state which doesn't allow modifying port forwarding. |
1 |
$ vagrant suspend |
参考:
http://qiita.com/kangyoosam/items/0506739733d97aa8636d