Когда я запускаю vagrant up
, я получаю следующую ошибку:
Vagrant cannot forward the specified ports on this VM, since they
would collide with another VirtualBox virtual machine's forwarded
ports! The forwarded port to 3306 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.forward_port 80, 1234
Я проверил, и у меня нет никаких процессов, использующих порт 3306
локально. Я тоже пробовал vagrant destroy
и vagrant up
, не помогло. vagrant suspend
и vagrant resume
тоже не помогли.
В чем еще может быть проблема?