From 01b4f9ae500e6e6239a264bc2139dc34be418cbb Mon Sep 17 00:00:00 2001 From: Axel DE VIGNON Date: Wed, 27 Sep 2017 12:40:17 +0200 Subject: [PATCH] Changing MySQL port forwarding to 3307 to avoid conflicts with existing MySQL instance on the host. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index dc8f876..678e6a0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -36,7 +36,7 @@ Vagrant.configure("2") do |config| config.vm.network "forwarded_port", guest: 8081, host: 8081 config.vm.network "forwarded_port", guest: 8082, host: 8082 # MySQL port - config.vm.network "forwarded_port", guest: 3307, host: 3306 + config.vm.network "forwarded_port", guest: 3306, host: 3307 # Postfix SMTP port config.vm.network "forwarded_port", guest: 25, host: 2525 # Mailcatcher SMTP port